- add SOLVER_SET bits to tell solver which properties of a job are intended by the...
[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 #include "transaction.h"
26 #include "rules.h"
27 #include "problems.h"
28
29 /*
30  * Callback definitions in order to "overwrite" the policies by an external application.
31  */
32  
33 typedef void  (*BestSolvableCb) (Pool *pool, Queue *canditates);
34 typedef int  (*ArchCheckCb) (Pool *pool, Solvable *solvable1, Solvable *solvable2);
35 typedef int  (*VendorCheckCb) (Pool *pool, Solvable *solvable1, Solvable *solvable2);
36 typedef void (*UpdateCandidateCb) (Pool *pool, Solvable *solvable, Queue *canditates);
37
38
39 struct _Solver;
40
41 typedef struct _Solver {
42   Pool *pool;                           /* back pointer to pool */
43   Queue job;                            /* copy of the job we're solving */
44
45   Transaction trans;                    /* calculated transaction */
46
47   Repo *installed;                      /* copy of pool->installed */
48   
49   /* list of rules, ordered
50    * rpm rules first, then features, updates, jobs, learnt
51    * see start/end offsets below
52    */
53   Rule *rules;                          /* all rules */
54   Id nrules;                            /* [Offset] index of the last rule */
55
56   Queue ruleassertions;                 /* Queue of all assertion rules */
57
58   /* start/end offset for rule 'areas' */
59     
60   Id rpmrules_end;                      /* [Offset] rpm rules end */
61     
62   Id featurerules;                      /* feature rules start/end */
63   Id featurerules_end;
64     
65   Id updaterules;                       /* policy rules, e.g. keep packages installed or update. All literals > 0 */
66   Id updaterules_end;
67     
68   Id jobrules;                          /* user rules */
69   Id jobrules_end;
70
71   Id infarchrules;                      /* inferior arch rules */
72   Id infarchrules_end;
73
74   Id duprules;                          /* dist upgrade rules */
75   Id duprules_end;
76     
77   Id choicerules;                       /* choice rules (always weak) */
78   Id choicerules_end;
79   Id *choicerules_ref;
80
81   Id learntrules;                       /* learnt rules, (end == nrules) */
82
83   Map noupdate;                         /* don't try to update these
84                                            installed solvables */
85   Map noobsoletes;                      /* ignore obsoletes for these (multiinstall) */
86
87   Map updatemap;                        /* bring these installed packages to the newest version */
88   int updatemap_all;                    /* bring all packages to the newest version */
89
90   Map fixmap;                           /* fix these packages */
91   int fixmap_all;                       /* fix all packages */
92
93   Queue weakruleq;                      /* index into 'rules' for weak ones */
94   Map weakrulemap;                      /* map rule# to '1' for weak rules, 1..learntrules */
95
96   Id *watches;                          /* Array of rule offsets
97                                          * watches has nsolvables*2 entries and is addressed from the middle
98                                          * middle-solvable : decision to conflict, offset point to linked-list of rules
99                                          * middle+solvable : decision to install: offset point to linked-list of rules
100                                          */
101
102   Queue ruletojob;                      /* index into job queue: jobs for which a rule exits */
103
104   /* our decisions: */
105   Queue decisionq;                      /* >0:install, <0:remove/conflict */
106   Queue decisionq_why;                  /* index of rule, Offset into rules */
107
108   Id *decisionmap;                      /* map for all available solvables,
109                                          * = 0: undecided
110                                          * > 0: level of decision when installed,
111                                          * < 0: level of decision when conflict */
112
113   /* learnt rule history */
114   Queue learnt_why;
115   Queue learnt_pool;
116
117   Queue branches;
118   int (*solution_callback)(struct _Solver *solv, void *data);
119   void *solution_callback_data;
120
121   int propagate_index;                  /* index into decisionq for non-propagated decisions */
122
123   Queue problems;                       /* list of lists of conflicting rules, < 0 for job rules */
124   Queue solutions;                      /* refined problem storage space */
125
126   Queue recommendations;                /* recommended packages */
127   Queue suggestions;                    /* suggested packages */
128   Queue orphaned;                       /* orphaned 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   Id *multiversionupdaters;             /* updaters for multiversion packages in updatesystem mode */
140
141   /*-------------------------------------------------------------------------------------------------------------
142    * Solver configuration
143    *-------------------------------------------------------------------------------------------------------------*/
144
145   int fixsystem;                        /* repair errors in rpm dependency graph */
146   int allowdowngrade;                   /* allow to downgrade installed solvable */
147   int allowarchchange;                  /* allow to change architecture of installed solvables */
148   int allowvendorchange;                /* allow to change vendor of installed solvables */
149   int allowuninstall;                   /* allow removal of installed solvables */
150   int updatesystem;                     /* update all packages to the newest version */
151   int noupdateprovide;                  /* true: update packages needs not to provide old package */
152   int dosplitprovides;                  /* true: consider legacy split provides */
153   int dontinstallrecommended;           /* true: do not install recommended packages */
154   int ignorealreadyrecommended;         /* true: ignore recommended packages that were already recommended by the installed packages */
155   int dontshowinstalledrecommended;     /* true: do not show recommended packages that are already installed */
156   
157   /* distupgrade also needs updatesystem and dosplitprovides */
158   int distupgrade;
159   int distupgrade_removeunsupported;
160
161   int noinfarchcheck;                   /* true: do not forbid inferior architectures */
162
163   /* Callbacks for defining the bahaviour of the SAT solver */
164
165   /* Finding best candidate
166    *
167    * Callback definition:
168    * void  bestSolvable (Pool *pool, Queue *canditates)
169    *     candidates       : List of canditates which has to be sorted by the function call
170    *     return candidates: Sorted list of the candidates(first is the best).
171    */
172    BestSolvableCb bestSolvableCb;
173
174   /* Checking if two solvables has compatible architectures
175    *
176    * Callback definition:
177    *     int  archCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
178    *     
179    *     return 0 it the two solvables has compatible architectures
180    */
181    ArchCheckCb archCheckCb;
182
183   /* Checking if two solvables has compatible vendors
184    *
185    * Callback definition:
186    *     int  vendorCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
187    *     
188    *     return 0 it the two solvables has compatible architectures
189    */
190    VendorCheckCb vendorCheckCb;
191     
192   /* Evaluate update candidate
193    *
194    * Callback definition:
195    * void pdateCandidateCb (Pool *pool, Solvable *solvable, Queue *canditates)
196    *     solvable   : for which updates should be search
197    *     candidates : List of candidates (This list depends on other
198    *                  restrictions like architecture and vendor policies too)
199    */
200    UpdateCandidateCb   updateCandidateCb;
201     
202
203   /* some strange queue that doesn't belong here */
204   Queue covenantq;                      /* Covenants honored by this solver (generic locks) */
205
206   
207   Map dupmap;                           /* dup these packages*/
208   int dupmap_all;                       /* dup all packages */
209   Map dupinvolvedmap;                   /* packages involved in dup process */
210
211   Map droporphanedmap;                  /* packages to drop in dup mode */
212   int droporphanedmap_all;
213
214   Map cleandepsmap;                     /* try to drop these packages as of cleandeps erases */
215
216   Queue *ruleinfoq;                     /* tmp space for solver_ruleinfo() */
217 } Solver;
218
219 /*
220  * queue commands
221  */
222
223 #define SOLVER_SOLVABLE                 0x01
224 #define SOLVER_SOLVABLE_NAME            0x02
225 #define SOLVER_SOLVABLE_PROVIDES        0x03
226 #define SOLVER_SOLVABLE_ONE_OF          0x04
227 #define SOLVER_SOLVABLE_REPO            0x05
228 #define SOLVER_SOLVABLE_ALL             0x06
229
230 #define SOLVER_SELECTMASK               0xff
231
232 #define SOLVER_NOOP                     0x0000
233 #define SOLVER_INSTALL                  0x0100
234 #define SOLVER_ERASE                    0x0200
235 #define SOLVER_UPDATE                   0x0300
236 #define SOLVER_WEAKENDEPS               0x0400
237 #define SOLVER_NOOBSOLETES              0x0500
238 #define SOLVER_LOCK                     0x0600
239 #define SOLVER_DISTUPGRADE              0x0700
240 #define SOLVER_VERIFY                   0x0800
241 #define SOLVER_DROP_ORPHANED            0x0900
242 #define SOLVER_USERINSTALLED            0x0a00
243
244 #define SOLVER_JOBMASK                  0xff00
245
246 #define SOLVER_WEAK                     0x010000
247 #define SOLVER_ESSENTIAL                0x020000
248 #define SOLVER_CLEANDEPS                0x040000
249
250 #define SOLVER_SETEV                    0x01000000
251 #define SOLVER_SETEVR                   0x02000000
252 #define SOLVER_SETARCH                  0x04000000
253 #define SOLVER_SETVENDOR                0x08000000
254 #define SOLVER_SETREPO                  0x10000000
255
256 #define SOLVER_SETMASK                  0x1f000000
257
258 /* old API compatibility, do not use in new code */
259 #if 1
260 #define SOLVER_INSTALL_SOLVABLE (SOLVER_INSTALL|SOLVER_SOLVABLE)
261 #define SOLVER_ERASE_SOLVABLE (SOLVER_ERASE|SOLVER_SOLVABLE)
262 #define SOLVER_INSTALL_SOLVABLE_NAME (SOLVER_INSTALL|SOLVER_SOLVABLE_NAME)
263 #define SOLVER_ERASE_SOLVABLE_NAME (SOLVER_ERASE|SOLVER_SOLVABLE_NAME)
264 #define SOLVER_INSTALL_SOLVABLE_PROVIDES (SOLVER_INSTALL|SOLVER_SOLVABLE_PROVIDES)
265 #define SOLVER_ERASE_SOLVABLE_PROVIDES (SOLVER_ERASE|SOLVER_SOLVABLE_PROVIDES)
266 #define SOLVER_INSTALL_SOLVABLE_UPDATE (SOLVER_UPDATE|SOLVER_SOLVABLE)
267 #define SOLVER_INSTALL_SOLVABLE_ONE_OF (SOLVER_INSTALL|SOLVER_SOLVABLE_ONE_OF)
268 #define SOLVER_WEAKEN_SOLVABLE_DEPS (SOLVER_WEAKENDEPS|SOLVER_SOLVABLE)
269 #define SOLVER_NOOBSOLETES_SOLVABLE (SOLVER_NOOBSOLETES|SOLVER_SOLVABLE)
270 #define SOLVER_NOOBSOLETES_SOLVABLE_NAME (SOLVER_NOOBSOLETES|SOLVER_SOLVABLE_NAME)
271 #define SOLVER_NOOBSOLETES_SOLVABLE_PROVIDES (SOLVER_NOOBSOLETES|SOLVER_SOLVABLE_PROVIDES)
272 #endif
273
274 /* backward compatibility */
275 #define SOLVER_PROBLEM_UPDATE_RULE              SOLVER_RULE_UPDATE
276 #define SOLVER_PROBLEM_JOB_RULE                 SOLVER_RULE_JOB
277 #define SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP
278 #define SOLVER_PROBLEM_NOT_INSTALLABLE          SOLVER_RULE_RPM_NOT_INSTALLABLE
279 #define SOLVER_PROBLEM_NOTHING_PROVIDES_DEP     SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP
280 #define SOLVER_PROBLEM_SAME_NAME                SOLVER_RULE_RPM_SAME_NAME
281 #define SOLVER_PROBLEM_PACKAGE_CONFLICT         SOLVER_RULE_RPM_PACKAGE_CONFLICT
282 #define SOLVER_PROBLEM_PACKAGE_OBSOLETES        SOLVER_RULE_RPM_PACKAGE_OBSOLETES
283 #define SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE SOLVER_RULE_RPM_PACKAGE_REQUIRES
284 #define SOLVER_PROBLEM_SELF_CONFLICT            SOLVER_RULE_RPM_SELF_CONFLICT
285 #define SOLVER_PROBLEM_RPM_RULE                 SOLVER_RULE_RPM
286 #define SOLVER_PROBLEM_DISTUPGRADE_RULE         SOLVER_RULE_DISTUPGRADE
287 #define SOLVER_PROBLEM_INFARCH_RULE             SOLVER_RULE_INFARCH
288
289
290 extern Solver *solver_create(Pool *pool);
291 extern void solver_free(Solver *solv);
292 extern void solver_solve(Solver *solv, Queue *job);
293
294 extern void solver_run_sat(Solver *solv, int disablerules, int doweak);
295 extern void solver_reset(Solver *solv);
296
297 extern int solver_dep_installed(Solver *solv, Id dep);
298 extern int solver_splitprovides(Solver *solv, Id dep);
299
300 extern void solver_calculate_noobsmap(Pool *pool, Queue *job, Map *noobsmap);
301
302 /* obsolete */
303 extern SolverRuleinfo solver_problemruleinfo(Solver *solv, Queue *job, Id rid, Id *depp, Id *sourcep, Id *targetp);
304
305 /* XXX: why is this not static? */
306 Id *solver_create_decisions_obsoletesmap(Solver *solv);
307
308 static inline int
309 solver_dep_fulfilled(Solver *solv, Id dep)
310 {
311   Pool *pool = solv->pool;
312   Id p, pp;
313
314   if (ISRELDEP(dep))
315     {
316       Reldep *rd = GETRELDEP(pool, dep);
317       if (rd->flags == REL_AND)
318         {
319           if (!solver_dep_fulfilled(solv, rd->name))
320             return 0;
321           return solver_dep_fulfilled(solv, rd->evr);
322         }
323       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
324         return solver_splitprovides(solv, rd->evr);
325       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
326         return solver_dep_installed(solv, rd->evr);
327     }
328   FOR_PROVIDES(p, pp, dep)
329     {
330       if (solv->decisionmap[p] > 0)
331         return 1;
332     }
333   return 0;
334 }
335
336 static inline int
337 solver_is_supplementing(Solver *solv, Solvable *s)
338 {
339   Id sup, *supp;
340   if (!s->supplements)
341     return 0;
342   supp = s->repo->idarraydata + s->supplements;
343   while ((sup = *supp++) != 0)
344     if (solver_dep_fulfilled(solv, sup))
345       return 1;
346   return 0;
347 }
348
349 static inline int
350 solver_is_enhancing(Solver *solv, Solvable *s)
351 {
352   Id enh, *enhp;
353   if (!s->enhances)
354     return 0;
355   enhp = s->repo->idarraydata + s->enhances;
356   while ((enh = *enhp++) != 0)
357     if (solver_dep_fulfilled(solv, enh))
358       return 1;
359   return 0;
360 }
361
362 void solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps);
363 int solver_calc_installsizechange(Solver *solv);
364 void solver_trivial_installable(Solver *solv, Queue *pkgs, Queue *res);
365
366 void solver_find_involved(Solver *solv, Queue *installedq, Solvable *s, Queue *q);
367
368 static inline void
369 solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap)
370 {
371   pool_create_state_maps(solv->pool, &solv->decisionq, installedmap, conflictsmap);
372 }
373
374 /* iterate over all literals of a rule */
375 /* WARNING: loop body must not relocate whatprovidesdata, e.g. by
376  * looking up the providers of a dependency */
377 #define FOR_RULELITERALS(l, dp, r)                              \
378     for (l = r->d < 0 ? -r->d - 1 : r->d,                       \
379          dp = !l ? &r->w2 : pool->whatprovidesdata + l,         \
380          l = r->p; l; l = (dp != &r->w2 + 1 ? *dp++ : 0))
381
382 /* iterate over all packages selected by a job */
383 #define FOR_JOB_SELECT(p, pp, select, what)                                     \
384     if (select == SOLVER_SOLVABLE_REPO || select == SOLVER_SOLVABLE_ALL)        \
385         p = pp = 0;                                                             \
386     else for (pp = (select == SOLVER_SOLVABLE ? 0 :                             \
387                select == SOLVER_SOLVABLE_ONE_OF ? what :                        \
388                pool_whatprovides(pool, what)),                                  \
389          p = (select == SOLVER_SOLVABLE ? what : pool->whatprovidesdata[pp++]) ; p ; p = pool->whatprovidesdata[pp++]) \
390       if (select != SOLVER_SOLVABLE_NAME || pool_match_nevr(pool, pool->solvables + p, what))
391
392 #ifdef __cplusplus
393 }
394 #endif
395
396 #endif /* SATSOLVER_SOLVER_H */