49ccec8b1bbea1e05118d5a2923ebc9b91233b14
[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 LIBSOLV_SOLVER_H
14 #define LIBSOLV_SOLVER_H
15
16 #include "pooltypes.h"
17 #include "pool.h"
18 #include "repo.h"
19 #include "queue.h"
20 #include "bitmap.h"
21 #include "transaction.h"
22 #include "rules.h"
23 #include "problems.h"
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 struct _Solver {
30   Pool *pool;                           /* back pointer to pool */
31   Queue job;                            /* copy of the job we're solving */
32
33   int (*solution_callback)(struct _Solver *solv, void *data);
34   void *solution_callback_data;
35
36   int pooljobcnt;                       /* number of pooljob entries in job queue */
37
38 #ifdef LIBSOLV_INTERNAL
39   Repo *installed;                      /* copy of pool->installed */
40
41   /* list of rules, ordered
42    * rpm rules first, then features, updates, jobs, learnt
43    * see start/end offsets below
44    */
45   Rule *rules;                          /* all rules */
46   Id nrules;                            /* [Offset] index of the last rule */
47
48   Queue ruleassertions;                 /* Queue of all assertion rules */
49
50   /* start/end offset for rule 'areas' */
51
52   Id rpmrules_end;                      /* [Offset] rpm rules end */
53
54   Id featurerules;                      /* feature rules start/end */
55   Id featurerules_end;
56
57   Id updaterules;                       /* policy rules, e.g. keep packages installed or update. All literals > 0 */
58   Id updaterules_end;
59
60   Id jobrules;                          /* user rules */
61   Id jobrules_end;
62
63   Id infarchrules;                      /* inferior arch rules */
64   Id infarchrules_end;
65
66   Id duprules;                          /* dist upgrade rules */
67   Id duprules_end;
68
69   Id bestrules;                         /* rules from SOLVER_FORCEBEST */
70   Id bestrules_end;
71   Id *bestrules_pkg;
72
73   Id yumobsrules;                       /* rules from yum obsoletes handling */
74   Id yumobsrules_end;
75   Id *yumobsrules_info;                 /* the dependency for each rule */
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 multiversion;                     /* 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 bestupdatemap;                    /* create best rule for those packages */
91   int bestupdatemap_all;                /* bring all packages to the newest version */
92
93   Map fixmap;                           /* fix these packages */
94   int fixmap_all;                       /* fix all packages */
95
96   Queue weakruleq;                      /* index into 'rules' for weak ones */
97   Map weakrulemap;                      /* map rule# to '1' for weak rules, 1..learntrules */
98
99   Id *watches;                          /* Array of rule offsets
100                                          * watches has nsolvables*2 entries and is addressed from the middle
101                                          * middle-solvable : decision to conflict, offset point to linked-list of rules
102                                          * middle+solvable : decision to install: offset point to linked-list of rules
103                                          */
104
105   Queue ruletojob;                      /* index into job queue: jobs for which a rule exits */
106
107   /* our decisions: */
108   Queue decisionq;                      /* >0:install, <0:remove/conflict */
109   Queue decisionq_why;                  /* index of rule, Offset into rules */
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   int decisioncnt_jobs;
117   int decisioncnt_update;
118   int decisioncnt_keep;
119   int decisioncnt_resolve;
120   int decisioncnt_weak;
121   int decisioncnt_orphan;
122
123   /* learnt rule history */
124   Queue learnt_why;
125   Queue learnt_pool;
126
127   Queue branches;
128   int propagate_index;                  /* index into decisionq for non-propagated decisions */
129
130   Queue problems;                       /* list of lists of conflicting rules, < 0 for job rules */
131   Queue solutions;                      /* refined problem storage space */
132
133   Queue orphaned;                       /* orphaned packages (to be removed?) */
134
135   int stats_learned;                    /* statistic */
136   int stats_unsolvable;                 /* statistic */
137
138   Map recommendsmap;                    /* recommended packages from decisionmap */
139   Map suggestsmap;                      /* suggested packages from decisionmap */
140   int recommends_index;                 /* recommendsmap/suggestsmap is created up to this level */
141   Queue *recommendscplxq;
142   Queue *suggestscplxq;
143
144   Id *obsoletes;                        /* obsoletes for each installed solvable */
145   Id *obsoletes_data;                   /* data area for obsoletes */
146   Id *specialupdaters;                  /* updaters for packages with a limited update rule */
147
148   /*-------------------------------------------------------------------------------------------------------------
149    * Solver configuration
150    *-------------------------------------------------------------------------------------------------------------*/
151
152   int allowdowngrade;                   /* allow to downgrade installed solvable */
153   int allownamechange;                  /* allow to change name of installed solvables */
154   int allowarchchange;                  /* allow to change architecture of installed solvables */
155   int allowvendorchange;                /* allow to change vendor of installed solvables */
156   int allowuninstall;                   /* allow removal of installed solvables */
157   int noupdateprovide;                  /* true: update packages needs not to provide old package */
158   int dosplitprovides;                  /* true: consider legacy split provides */
159   int dontinstallrecommended;           /* true: do not install recommended packages */
160   int addalreadyrecommended;            /* true: also install recommended packages that were already recommended by the installed packages */
161   int dontshowinstalledrecommended;     /* true: do not show recommended packages that are already installed */
162
163   int noinfarchcheck;                   /* true: do not forbid inferior architectures */
164   int keepexplicitobsoletes;            /* true: honor obsoletes during multiinstall */
165   int bestobeypolicy;                   /* true: stay in policy with the best rules */
166   int noautotarget;                     /* true: do not assume targeted for up/dup jobs that contain no installed solvable */
167   int focus_installed;                  /* true: resolve update rules first */
168   int do_yum_obsoletes;                 /* true: add special yumobs rules */
169
170   Map dupmap;                           /* dup these packages*/
171   int dupmap_all;                       /* dup all packages */
172   Map dupinvolvedmap;                   /* packages involved in dup process */
173   int dup_allowdowngrade;               /* dup mode: allow to downgrade installed solvable */
174   int dup_allownamechange;              /* dup mode: allow to change name of installed solvable */
175   int dup_allowarchchange;              /* dup mode: allow to change architecture of installed solvables */
176   int dup_allowvendorchange;            /* dup mode: allow to change vendor of installed solvables */
177
178   Map droporphanedmap;                  /* packages to drop in dup mode */
179   int droporphanedmap_all;
180
181   Map cleandepsmap;                     /* try to drop these packages as of cleandeps erases */
182
183   Queue *ruleinfoq;                     /* tmp space for solver_ruleinfo() */
184
185   Queue *cleandeps_updatepkgs;          /* packages we update in cleandeps mode */
186   Queue *cleandeps_mistakes;            /* mistakes we made */
187
188   Queue *update_targets;                /* update to specific packages */
189
190   Queue *installsuppdepq;               /* deps from the install namespace provides hack */
191
192   Queue addedmap_deduceq;               /* deduce addedmap from rpm rules */
193   Id *instbuddy;                        /* buddies of installed packages */
194   int keep_orphans;                     /* how to treat orphans */
195   int break_orphans;                    /* how to treat orphans */
196   Queue *brokenorphanrules;             /* broken rules of orphaned packages */
197 #endif  /* LIBSOLV_INTERNAL */
198 };
199
200 typedef struct _Solver Solver;
201
202 /*
203  * queue commands
204  */
205
206 #define SOLVER_SOLVABLE                 0x01
207 #define SOLVER_SOLVABLE_NAME            0x02
208 #define SOLVER_SOLVABLE_PROVIDES        0x03
209 #define SOLVER_SOLVABLE_ONE_OF          0x04
210 #define SOLVER_SOLVABLE_REPO            0x05
211 #define SOLVER_SOLVABLE_ALL             0x06
212
213 #define SOLVER_SELECTMASK               0xff
214
215 #define SOLVER_NOOP                     0x0000
216 #define SOLVER_INSTALL                  0x0100
217 #define SOLVER_ERASE                    0x0200
218 #define SOLVER_UPDATE                   0x0300
219 #define SOLVER_WEAKENDEPS               0x0400
220 #define SOLVER_MULTIVERSION             0x0500
221 #define SOLVER_LOCK                     0x0600
222 #define SOLVER_DISTUPGRADE              0x0700
223 #define SOLVER_VERIFY                   0x0800
224 #define SOLVER_DROP_ORPHANED            0x0900
225 #define SOLVER_USERINSTALLED            0x0a00
226
227 #define SOLVER_JOBMASK                  0xff00
228
229 #define SOLVER_WEAK                     0x010000
230 #define SOLVER_ESSENTIAL                0x020000
231 #define SOLVER_CLEANDEPS                0x040000
232 /* ORUPDATE makes SOLVER_INSTALL not prune to installed
233  * packages, thus updating installed packages */
234 #define SOLVER_ORUPDATE                 0x080000
235 /* FORCEBEST makes the solver insist on best packages, so
236  * you will get problem reported if the best package is
237  * not installable. This can be used with INSTALL, UPDATE
238  * and DISTUPGRADE */
239 #define SOLVER_FORCEBEST                0x100000
240 /* TARGETED is used in up/dup jobs to make the solver
241  * treat the specified selection as target packages.
242  * It is automatically assumed if the selection does not
243  * contain an "installed" package unless the
244  * NO_AUTOTARGET solver flag is set */
245 #define SOLVER_TARGETED                 0x200000
246 /* This (SOLVER_INSTALL) job was automatically added
247  * and thus does not the add to the userinstalled packages */
248 #define SOLVER_NOTBYUSER                0x400000
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 #define SOLVER_NOAUTOSET                0x20000000
256 #define SOLVER_SETNAME                  0x40000000
257
258 #define SOLVER_SETMASK                  0x7f000000
259
260 /* legacy */
261 #define SOLVER_NOOBSOLETES              SOLVER_MULTIVERSION
262
263 #define SOLVER_REASON_UNRELATED         0
264 #define SOLVER_REASON_UNIT_RULE         1
265 #define SOLVER_REASON_KEEP_INSTALLED    2
266 #define SOLVER_REASON_RESOLVE_JOB       3
267 #define SOLVER_REASON_UPDATE_INSTALLED  4
268 #define SOLVER_REASON_CLEANDEPS_ERASE   5
269 #define SOLVER_REASON_RESOLVE           6
270 #define SOLVER_REASON_WEAKDEP           7
271 #define SOLVER_REASON_RESOLVE_ORPHAN    8
272
273 #define SOLVER_REASON_RECOMMENDED       16
274 #define SOLVER_REASON_SUPPLEMENTED      17
275
276
277 #define SOLVER_FLAG_ALLOW_DOWNGRADE             1
278 #define SOLVER_FLAG_ALLOW_ARCHCHANGE            2
279 #define SOLVER_FLAG_ALLOW_VENDORCHANGE          3
280 #define SOLVER_FLAG_ALLOW_UNINSTALL             4
281 #define SOLVER_FLAG_NO_UPDATEPROVIDE            5
282 #define SOLVER_FLAG_SPLITPROVIDES               6
283 #define SOLVER_FLAG_IGNORE_RECOMMENDED          7
284 #define SOLVER_FLAG_ADD_ALREADY_RECOMMENDED     8
285 #define SOLVER_FLAG_NO_INFARCHCHECK             9
286 #define SOLVER_FLAG_ALLOW_NAMECHANGE            10
287 #define SOLVER_FLAG_KEEP_EXPLICIT_OBSOLETES     11
288 #define SOLVER_FLAG_BEST_OBEY_POLICY            12
289 #define SOLVER_FLAG_NO_AUTOTARGET               13
290 #define SOLVER_FLAG_DUP_ALLOW_DOWNGRADE         14
291 #define SOLVER_FLAG_DUP_ALLOW_ARCHCHANGE        15
292 #define SOLVER_FLAG_DUP_ALLOW_VENDORCHANGE      16
293 #define SOLVER_FLAG_DUP_ALLOW_NAMECHANGE        17
294 #define SOLVER_FLAG_KEEP_ORPHANS                18
295 #define SOLVER_FLAG_BREAK_ORPHANS               19
296 #define SOLVER_FLAG_FOCUS_INSTALLED             20
297 #define SOLVER_FLAG_YUM_OBSOLETES               21
298
299 #define GET_USERINSTALLED_NAMES                 (1 << 0)        /* package names instead if ids */
300 #define GET_USERINSTALLED_INVERTED              (1 << 1)        /* autoinstalled */
301
302 extern Solver *solver_create(Pool *pool);
303 extern void solver_free(Solver *solv);
304 extern int  solver_solve(Solver *solv, Queue *job);
305 extern Transaction *solver_create_transaction(Solver *solv);
306 extern int solver_set_flag(Solver *solv, int flag, int value);
307 extern int solver_get_flag(Solver *solv, int flag);
308
309 extern int  solver_get_decisionlevel(Solver *solv, Id p);
310 extern void solver_get_decisionqueue(Solver *solv, Queue *decisionq);
311 extern int  solver_get_lastdecisionblocklevel(Solver *solv);
312 extern void solver_get_decisionblock(Solver *solv, int level, Queue *decisionq);
313
314 extern void solver_get_orphaned(Solver *solv, Queue *orphanedq);
315 extern void solver_get_recommendations(Solver *solv, Queue *recommendationsq, Queue *suggestionsq, int noselected);
316 extern void solver_get_unneeded(Solver *solv, Queue *unneededq, int filtered);
317 extern void solver_get_userinstalled(Solver *solv, Queue *q, int flags);
318 extern void pool_add_userinstalled_jobs(Pool *pool, Queue *q, Queue *job, int flags);
319
320 extern int  solver_describe_decision(Solver *solv, Id p, Id *infop);
321 extern void solver_describe_weakdep_decision(Solver *solv, Id p, Queue *whyq);
322
323
324 extern void solver_calculate_multiversionmap(Pool *pool, Queue *job, Map *multiversionmap);
325 extern void solver_calculate_noobsmap(Pool *pool, Queue *job, Map *multiversionmap);    /* obsolete */
326 extern void solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap);
327
328 extern void solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps);
329 extern int solver_calc_installsizechange(Solver *solv);
330 extern void solver_trivial_installable(Solver *solv, Queue *pkgs, Queue *res);
331
332 extern void pool_job2solvables(Pool *pool, Queue *pkgs, Id how, Id what);
333 extern int  pool_isemptyupdatejob(Pool *pool, Id how, Id what);
334
335 extern const char *solver_select2str(Pool *pool, Id select, Id what);
336 extern const char *pool_job2str(Pool *pool, Id how, Id what, Id flagmask);
337
338 /* iterate over all literals of a rule */
339 #define FOR_RULELITERALS(l, pp, r)                              \
340     for (pp = r->d < 0 ? -r->d - 1 : r->d,                      \
341          l = r->p; l; l = (pp <= 0 ? (pp-- ? 0 : r->w2) :       \
342          pool->whatprovidesdata[pp++]))
343
344
345
346
347 /* XXX: this currently doesn't work correctly for SOLVER_SOLVABLE_REPO and
348    SOLVER_SOLVABLE_ALL */
349
350 /* iterate over all packages selected by a job */
351 #define FOR_JOB_SELECT(p, pp, select, what)                                     \
352     if (select == SOLVER_SOLVABLE_REPO || select == SOLVER_SOLVABLE_ALL)        \
353         p = pp = 0;                                                             \
354     else for (pp = (select == SOLVER_SOLVABLE ? 0 :                             \
355                select == SOLVER_SOLVABLE_ONE_OF ? what :                        \
356                pool_whatprovides(pool, what)),                                  \
357          p = (select == SOLVER_SOLVABLE ? what : pool->whatprovidesdata[pp++]); \
358                                          p ; p = pool->whatprovidesdata[pp++])  \
359       if (select == SOLVER_SOLVABLE_NAME &&                                     \
360                         pool_match_nevr(pool, pool->solvables + p, what) == 0)  \
361         continue;                                                               \
362       else
363
364 #ifdef __cplusplus
365 }
366 #endif
367
368 #endif /* LIBSOLV_SOLVER_H */