add comment
[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
91                                            installed solvables */
92   Map noobsoletes;                      /* ignore obsoletes for these
93                                            (multiinstall) */
94
95   Queue weakruleq;                      /* index into 'rules' for weak ones */
96   Map weakrulemap;                      /* map rule# to '1' for weak rules, 1..learntrules */
97
98   Id *watches;                          /* Array of rule offsets
99                                          * watches has nsolvables*2 entries and is addressed from the middle
100                                          * middle-solvable : decision to conflict, offset point to linked-list of rules
101                                          * middle+solvable : decision to install: offset point to linked-list of rules
102                                          */
103
104   Queue ruletojob;                      /* index into job queue: jobs for which a rule exits */
105
106   /* our decisions: */
107   Queue decisionq;                      /* >0:install, <0:remove/conflict */
108   Queue decisionq_why;                  /* index of rule, Offset into rules */
109   int directdecisions;                  /* number of decisions with no rule */
110
111   Id *decisionmap;                      /* map for all available solvables,
112                                          * = 0: undecided
113                                          * > 0: level of decision when installed,
114                                          * < 0: level of decision when conflict */
115
116   /* learnt rule history */
117   Queue learnt_why;
118   Queue learnt_pool;
119
120   Queue branches;
121   int (*solution_callback)(struct solver *solv, void *data);
122   void *solution_callback_data;
123
124   int propagate_index;                  /* index into decisionq for non-propagated decisions */
125
126   Queue problems;                       /* index of conflicting rules, < 0 for job rules */
127   Queue recommendations;                /* recommended packages */
128   Queue suggestions;                    /* suggested packages */
129
130   int stats_learned;                    /* statistic */
131   int stats_unsolvable;                 /* statistic */
132
133   Map recommendsmap;                    /* recommended packages from decisionmap */
134   Map suggestsmap;                      /* suggested packages from decisionmap */
135   int recommends_index;                 /* recommendsmap/suggestsmap is created up to this level */
136
137   Id *obsoletes;                        /* obsoletes for each installed solvable */
138   Id *obsoletes_data;                   /* data area for obsoletes */
139
140   /*-------------------------------------------------------------------------------------------------------------
141    * Solver configuration
142    *-------------------------------------------------------------------------------------------------------------*/
143
144   int fixsystem;                        /* repair errors in rpm dependency graph */
145   int allowdowngrade;                   /* allow to downgrade installed solvable */
146   int allowarchchange;                  /* allow to change architecture of installed solvables */
147   int allowvendorchange;                /* allow to change vendor of installed solvables */
148   int allowuninstall;                   /* allow removal of installed solvables */
149   int updatesystem;                     /* distupgrade */
150   int allowvirtualconflicts;            /* false: conflicts on package name, true: conflicts on package provides */
151   int allowselfconflicts;               /* true: packages wich conflict with itself are installable */
152   int obsoleteusesprovides;             /* true: obsoletes are matched against provides, not names */
153   int implicitobsoleteusesprovides;     /* true: implicit obsoletes due to same name are matched against provides, not names */
154   int noupdateprovide;                  /* true: update packages needs not to provide old package */
155   int dosplitprovides;                  /* true: consider legacy split provides */
156   int dontinstallrecommended;           /* true: do not install recommended packages */
157   int dontshowinstalledrecommended;     /* true: do not show recommended packages that are already installed */
158   
159   /* Callbacks for defining the bahaviour of the SAT solver */
160
161   /* Finding best candidate
162    *
163    * Callback definition:
164    * void  bestSolvable (Pool *pool, Queue *canditates)
165    *     candidates       : List of canditates which has to be sorted by the function call
166    *     return candidates: Sorted list of the candidates(first is the best).
167    */
168    BestSolvableCb bestSolvableCb;
169
170   /* Checking if two solvables has compatible architectures
171    *
172    * Callback definition:
173    *     int  archCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
174    *     
175    *     return 0 it the two solvables has compatible architectures
176    */
177    ArchCheckCb archCheckCb;
178
179   /* Checking if two solvables has compatible vendors
180    *
181    * Callback definition:
182    *     int  vendorCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
183    *     
184    *     return 0 it the two solvables has compatible architectures
185    */
186    VendorCheckCb vendorCheckCb;
187     
188   /* Evaluate update candidate
189    *
190    * Callback definition:
191    * void pdateCandidateCb (Pool *pool, Solvable *solvable, Queue *canditates)
192    *     solvable   : for which updates should be search
193    *     candidates : List of candidates (This list depends on other
194    *                  restrictions like architecture and vendor policies too)
195    */
196    UpdateCandidateCb   updateCandidateCb;
197     
198
199   /* some strange queue that doesn't belong here */
200
201   Queue covenantq;                      /* Covenants honored by this solver (generic locks) */
202
203   
204 } Solver;
205
206 /*
207  * queue commands
208  */
209
210 typedef enum {
211   SOLVCMD_NULL=0,
212   SOLVER_INSTALL_SOLVABLE,
213   SOLVER_ERASE_SOLVABLE,
214   SOLVER_INSTALL_SOLVABLE_NAME,
215   SOLVER_ERASE_SOLVABLE_NAME,
216   SOLVER_INSTALL_SOLVABLE_PROVIDES,
217   SOLVER_ERASE_SOLVABLE_PROVIDES,
218   SOLVER_INSTALL_SOLVABLE_UPDATE,
219   SOLVER_INSTALL_SOLVABLE_ONE_OF,
220   SOLVER_WEAKEN_SOLVABLE_DEPS,
221   SOLVER_NOOBSOLETES_SOLVABLE,
222   SOLVER_NOOBSOLETES_SOLVABLE_NAME,
223   SOLVER_NOOBSOLETES_SOLVABLE_PROVIDES,
224
225   /* flags */
226   SOLVER_WEAK = 0x100,
227 } SolverCmd;
228
229 typedef enum {
230   SOLVER_PROBLEM_UPDATE_RULE,
231   SOLVER_PROBLEM_JOB_RULE,
232   SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP,
233   SOLVER_PROBLEM_NOT_INSTALLABLE,
234   SOLVER_PROBLEM_NOTHING_PROVIDES_DEP,
235   SOLVER_PROBLEM_SAME_NAME,
236   SOLVER_PROBLEM_PACKAGE_CONFLICT,
237   SOLVER_PROBLEM_PACKAGE_OBSOLETES,
238   SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE,
239   SOLVER_PROBLEM_SELF_CONFLICT
240 } SolverProbleminfo;
241
242
243 extern Solver *solver_create(Pool *pool, Repo *installed);
244 extern void solver_free(Solver *solv);
245 extern void solver_solve(Solver *solv, Queue *job);
246 extern int solver_dep_installed(Solver *solv, Id dep);
247 extern int solver_splitprovides(Solver *solv, Id dep);
248
249 extern Id solver_next_problem(Solver *solv, Id problem);
250 extern Id solver_next_solution(Solver *solv, Id problem, Id solution);
251 extern Id solver_next_solutionelement(Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp);
252 extern Id solver_findproblemrule(Solver *solv, Id problem);
253 extern SolverProbleminfo solver_problemruleinfo(Solver *solv, Queue *job, Id rid, Id *depp, Id *sourcep, Id *targetp);
254
255 /* XXX: why is this not static? */
256 Id *create_decisions_obsoletesmap(Solver *solv);
257
258 static inline int
259 solver_dep_fulfilled(Solver *solv, Id dep)
260 {
261   Pool *pool = solv->pool;
262   Id p, *pp;
263
264   if (ISRELDEP(dep))
265     {
266       Reldep *rd = GETRELDEP(pool, dep);
267       if (rd->flags == REL_AND)
268         {
269           if (!solver_dep_fulfilled(solv, rd->name))
270             return 0;
271           return solver_dep_fulfilled(solv, rd->evr);
272         }
273       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
274         return solver_splitprovides(solv, rd->evr);
275       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
276         return solver_dep_installed(solv, rd->evr);
277     }
278   FOR_PROVIDES(p, pp, dep)
279     {
280       if (solv->decisionmap[p] > 0)
281         return 1;
282     }
283   return 0;
284 }
285
286 static inline int
287 solver_is_supplementing(Solver *solv, Solvable *s)
288 {
289   Id sup, *supp;
290   if (!s->supplements && !s->freshens)
291     return 0;
292   if (s->supplements)
293     {
294       supp = s->repo->idarraydata + s->supplements;
295       while ((sup = *supp++) != 0)
296         if (solver_dep_fulfilled(solv, sup))
297           break;
298       if (!sup)
299         return 0;
300     }
301   if (s->freshens)
302     {
303       supp = s->repo->idarraydata + s->freshens;
304       while ((sup = *supp++) != 0)
305         if (solver_dep_fulfilled(solv, sup))
306           break;
307       if (!sup)
308         return 0;
309     }
310   return 1;
311 }
312
313 static inline int
314 solver_is_enhancing(Solver *solv, Solvable *s)
315 {
316   Id enh, *enhp;
317   if (!s->enhances)
318     return 0;
319   enhp = s->repo->idarraydata + s->enhances;
320   while ((enh = *enhp++) != 0)
321     if (solver_dep_fulfilled(solv, enh))
322       return 1;
323   return 0;
324 }
325
326 void solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps);
327 int solver_calc_installsizechange(Solver *solv);
328
329 static inline void
330 solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap)
331 {
332   pool_create_state_maps(solv->pool, &solv->decisionq, installedmap, conflictsmap);
333 }
334
335 #define FOR_RULELITERALS(l, dp, r)                              \
336     for (l = r->d < 0 ? -r->d - 1 : r->d,                       \
337          dp = !l ? &r->w2 : pool->whatprovidesdata + l,         \
338          l = r->p; l; l = (dp != &r->w2 + 1 ? *dp++ : 0))
339
340 #ifdef __cplusplus
341 }
342 #endif
343
344 #endif /* SATSOLVER_SOLVER_H */