add comments
[platform/upstream/libsolv.git] / src / solver.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  * solver.h
10  *
11  */
12
13 #ifndef SATSOLVER_SOLVER_H
14 #define SATSOLVER_SOLVER_H
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 #include "pooltypes.h"
21 #include "pool.h"
22 #include "repo.h"
23 #include "queue.h"
24 #include "bitmap.h"
25 /*
26  * Callback definitions in order to "overwrite" the policies by an external application.
27  */
28  
29 typedef void  (*BestSolvableCb) (Pool *pool, Queue *canditates);
30 typedef int  (*ArchCheckCb) (Pool *pool, Solvable *solvable1, Solvable *solvable2);
31 typedef int  (*VendorCheckCb) (Pool *pool, Solvable *solvable1, Solvable *solvable2);
32 typedef void (*UpdateCandidateCb) (Pool *pool, Solvable *solvable, Queue *canditates);
33
34
35 /* ----------------------------------------------
36  * Rule
37  *
38  *   providerN(B) == Package Id of package providing tag B
39  *   N = 1, 2, 3, in case of multiple providers
40  *
41  * A requires B : !A | provider1(B) | provider2(B)
42  *
43  * A conflicts B : (!A | !provider1(B)) & (!A | !provider2(B)) ...
44  *
45  * 'not' is encoded as a negative Id
46  * 
47  * Binary rule: p = first literal, d = 0, w2 = second literal, w1 = p
48  */
49
50 typedef struct rule {
51   Id p;                 /* first literal in rule */
52   Id d;                 /* Id offset into 'list of providers terminated by 0' as used by whatprovides; pool->whatprovides + d */
53                         /* in case of binary rules, d == 0, w1 == p, w2 == other literal */
54                         /* in case of disabled rules: ~d, aka -d - 1 */
55   Id w1, w2;            /* watches, literals not-yet-decided */
56                                        /* if !w2, assertion, not rule */
57   Id n1, n2;            /* next rules in linked list, corresponding to w1,w2 */
58 } Rule;
59
60 struct solver;
61
62 typedef struct solver {
63   Pool *pool;
64   Repo *installed;
65   
66   /* list of rules, ordered
67    * rpm rules first, then features, updates, jobs, learnt
68    * see start/end offsets below
69    */
70   Rule *rules;                          /* all rules */
71   Id nrules;                            /* [Offset] index of the last rule */
72
73   Queue ruleassertions;                 /* Queue of all assertion rules */
74
75   /* start/end offset for rule 'areas' */
76     
77   Id rpmrules_end;                      /* [Offset] rpm rules end */
78     
79   Id featurerules;                      /* feature rules start/end */
80   Id featurerules_end;
81     
82   Id updaterules;                       /* policy rules, e.g. keep packages installed or update. All literals > 0 */
83   Id updaterules_end;
84     
85   Id jobrules;                          /* user rules */
86   Id jobrules_end;
87     
88   Id learntrules;                       /* learnt rules, (end == nrules) */
89
90   Map noupdate;                         /* don't try to update these installed solvables */
91                                         /* aka 'obsoletesmap' */
92
93   Queue weakruleq;                      /* index into 'rules' for weak ones */
94
95   Map weakrulemap;                      /* map rule# to '1' for weak rules, 1..learntrules */
96
97   Id *watches;                          /* Array of rule offsets
98                                          * watches has nsolvables*2 entries and is addressed from the middle
99                                          * middle-solvable : decision to conflict, offset point to linked-list of rules
100                                          * middle+solvable : decision to install: offset point to linked-list of rules
101                                          */
102
103   Queue ruletojob;                      /* index into job queue: jobs for which a rule exits */
104
105   /* our decisions: */
106   Queue decisionq;                      /* >0:install, <0:remove/conflict */
107   Queue decisionq_why;                  /* index of rule, Offset into rules */
108   int directdecisions;                  /* number of decisions with no rule */
109
110   Id *decisionmap;                      /* map for all available solvables,
111                                            > 0: level of decision when installed,
112                                            < 0: level of decision when conflict */
113
114   /* learnt rule history */
115   Queue learnt_why;
116   Queue learnt_pool;
117
118   Queue branches;
119   int (*solution_callback)(struct solver *solv, void *data);
120   void *solution_callback_data;
121
122   int propagate_index;                  /* index into decisionq for non-propagated decisions */
123
124   Queue problems;                       /* index of conflicting rules, < 0 for job rules */
125   Queue recommendations;                /* recommended packages */
126   Queue suggestions;                    /* suggested packages */
127
128   int stats_learned;                    /* statistic */
129   int stats_unsolvable;                 /* statistic */
130
131   Map recommendsmap;                    /* recommended packages from decisionmap */
132   Map suggestsmap;                      /* suggested packages from decisionmap */
133   int recommends_index;                 /* recommendsmap/suggestsmap is created up to this level */
134
135   Id *obsoletes;                        /* obsoletes for each installed solvable */
136   Id *obsoletes_data;                   /* data area for obsoletes */
137
138   /*-------------------------------------------------------------------------------------------------------------
139    * Solver configuration
140    *-------------------------------------------------------------------------------------------------------------*/
141
142   int fixsystem;                        /* repair errors in rpm dependency graph */
143   int allowdowngrade;                   /* allow to downgrade installed solvable */
144   int allowarchchange;                  /* allow to change architecture of installed solvables */
145   int allowvendorchange;                /* allow to change vendor of installed solvables */
146   int allowuninstall;                   /* allow removal of installed solvables */
147   int updatesystem;                     /* distupgrade */
148   int allowvirtualconflicts;            /* false: conflicts on package name, true: conflicts on package provides */
149   int allowselfconflicts;               /* true: packages wich conflict with itself are installable */
150   int obsoleteusesprovides;             /* true: obsoletes are matched against provides, not names */
151   int implicitobsoleteusesprovides;     /* true: implicit obsoletes due to same name are matched against provides, not names */
152   int noupdateprovide;                  /* true: update packages needs not to provide old package */
153   int dosplitprovides;                  /* true: consider legacy split provides */
154   int dontinstallrecommended;           /* true: do not install recommended packages */
155   int dontshowinstalledrecommended;     /* true: do not show recommended packages that are already installed */
156   
157   /* Callbacks for defining the bahaviour of the SAT solver */
158
159   /* Finding best candidate
160    *
161    * Callback definition:
162    * void  bestSolvable (Pool *pool, Queue *canditates)
163    *     candidates       : List of canditates which has to be sorted by the function call
164    *     return candidates: Sorted list of the candidates(first is the best).
165    */
166    BestSolvableCb bestSolvableCb;
167
168   /* Checking if two solvables has compatible architectures
169    *
170    * Callback definition:
171    *     int  archCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
172    *     
173    *     return 0 it the two solvables has compatible architectures
174    */
175    ArchCheckCb archCheckCb;
176
177   /* Checking if two solvables has compatible vendors
178    *
179    * Callback definition:
180    *     int  vendorCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
181    *     
182    *     return 0 it the two solvables has compatible architectures
183    */
184    VendorCheckCb vendorCheckCb;
185     
186   /* Evaluate update candidate
187    *
188    * Callback definition:
189    * void pdateCandidateCb (Pool *pool, Solvable *solvable, Queue *canditates)
190    *     solvable   : for which updates should be search
191    *     candidates : List of candidates (This list depends on other
192    *                  restrictions like architecture and vendor policies too)
193    */
194    UpdateCandidateCb   updateCandidateCb;
195     
196
197   /* some strange queue that doesn't belong here */
198
199   Queue covenantq;                      /* Covenants honored by this solver (generic locks) */
200
201   
202 } Solver;
203
204 /*
205  * queue commands
206  */
207
208 typedef enum {
209   SOLVCMD_NULL=0,
210   SOLVER_INSTALL_SOLVABLE,
211   SOLVER_ERASE_SOLVABLE,
212   SOLVER_INSTALL_SOLVABLE_NAME,
213   SOLVER_ERASE_SOLVABLE_NAME,
214   SOLVER_INSTALL_SOLVABLE_PROVIDES,
215   SOLVER_ERASE_SOLVABLE_PROVIDES,
216   SOLVER_INSTALL_SOLVABLE_UPDATE,
217   SOLVER_INSTALL_SOLVABLE_ONE_OF,
218   SOLVER_WEAKEN_SOLVABLE_DEPS,
219   SOLVER_WEAK = 0x100,
220 } SolverCmd;
221
222 typedef enum {
223   SOLVER_PROBLEM_UPDATE_RULE,
224   SOLVER_PROBLEM_JOB_RULE,
225   SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP,
226   SOLVER_PROBLEM_NOT_INSTALLABLE,
227   SOLVER_PROBLEM_NOTHING_PROVIDES_DEP,
228   SOLVER_PROBLEM_SAME_NAME,
229   SOLVER_PROBLEM_PACKAGE_CONFLICT,
230   SOLVER_PROBLEM_PACKAGE_OBSOLETES,
231   SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE,
232   SOLVER_PROBLEM_SELF_CONFLICT
233 } SolverProbleminfo;
234
235
236 extern Solver *solver_create(Pool *pool, Repo *installed);
237 extern void solver_free(Solver *solv);
238 extern void solver_solve(Solver *solv, Queue *job);
239 extern int solver_dep_installed(Solver *solv, Id dep);
240 extern int solver_splitprovides(Solver *solv, Id dep);
241
242 extern Id solver_next_problem(Solver *solv, Id problem);
243 extern Id solver_next_solution(Solver *solv, Id problem, Id solution);
244 extern Id solver_next_solutionelement(Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp);
245 extern Id solver_findproblemrule(Solver *solv, Id problem);
246 extern SolverProbleminfo solver_problemruleinfo(Solver *solv, Queue *job, Id rid, Id *depp, Id *sourcep, Id *targetp);
247
248 /* XXX: why is this not static? */
249 Id *create_decisions_obsoletesmap(Solver *solv);
250
251 static inline int
252 solver_dep_fulfilled(Solver *solv, Id dep)
253 {
254   Pool *pool = solv->pool;
255   Id p, *pp;
256
257   if (ISRELDEP(dep))
258     {
259       Reldep *rd = GETRELDEP(pool, dep);
260       if (rd->flags == REL_AND)
261         {
262           if (!solver_dep_fulfilled(solv, rd->name))
263             return 0;
264           return solver_dep_fulfilled(solv, rd->evr);
265         }
266       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
267         return solver_splitprovides(solv, rd->evr);
268       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
269         return solver_dep_installed(solv, rd->evr);
270     }
271   FOR_PROVIDES(p, pp, dep)
272     {
273       if (solv->decisionmap[p] > 0)
274         return 1;
275     }
276   return 0;
277 }
278
279 static inline int
280 solver_is_supplementing(Solver *solv, Solvable *s)
281 {
282   Id sup, *supp;
283   if (!s->supplements && !s->freshens)
284     return 0;
285   if (s->supplements)
286     {
287       supp = s->repo->idarraydata + s->supplements;
288       while ((sup = *supp++) != 0)
289         if (solver_dep_fulfilled(solv, sup))
290           break;
291       if (!sup)
292         return 0;
293     }
294   if (s->freshens)
295     {
296       supp = s->repo->idarraydata + s->freshens;
297       while ((sup = *supp++) != 0)
298         if (solver_dep_fulfilled(solv, sup))
299           break;
300       if (!sup)
301         return 0;
302     }
303   return 1;
304 }
305
306 static inline int
307 solver_is_enhancing(Solver *solv, Solvable *s)
308 {
309   Id enh, *enhp;
310   if (!s->enhances)
311     return 0;
312   enhp = s->repo->idarraydata + s->enhances;
313   while ((enh = *enhp++) != 0)
314     if (solver_dep_fulfilled(solv, enh))
315       return 1;
316   return 0;
317 }
318
319 void solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps);
320 int solver_calc_installsizechange(Solver *solv);
321
322 static inline void
323 solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap)
324 {
325   pool_create_state_maps(solv->pool, &solv->decisionq, installedmap, conflictsmap);
326 }
327
328 #define FOR_RULELITERALS(l, dp, r)                              \
329     for (l = r->d < 0 ? -r->d - 1 : r->d,                       \
330          dp = !l ? &r->w2 : pool->whatprovidesdata + l,         \
331          l = r->p; l; l = (dp != &r->w2 + 1 ? *dp++ : 0))
332
333 #ifdef __cplusplus
334 }
335 #endif
336
337 #endif /* SATSOLVER_SOLVER_H */