2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
13 #ifndef SATSOLVER_SOLVER_H
14 #define SATSOLVER_SOLVER_H
20 #include "pooltypes.h"
25 #include "transaction.h"
27 * Callback definitions in order to "overwrite" the policies by an external application.
30 typedef void (*BestSolvableCb) (Pool *pool, Queue *canditates);
31 typedef int (*ArchCheckCb) (Pool *pool, Solvable *solvable1, Solvable *solvable2);
32 typedef int (*VendorCheckCb) (Pool *pool, Solvable *solvable1, Solvable *solvable2);
33 typedef void (*UpdateCandidateCb) (Pool *pool, Solvable *solvable, Queue *canditates);
36 /* ----------------------------------------------
39 * providerN(B) == Package Id of package providing tag B
40 * N = 1, 2, 3, in case of multiple providers
42 * A requires B : !A | provider1(B) | provider2(B)
44 * A conflicts B : (!A | !provider1(B)) & (!A | !provider2(B)) ...
46 * 'not' is encoded as a negative Id
48 * Binary rule: p = first literal, d = 0, w2 = second literal, w1 = p
52 Id p; /* first literal in rule */
53 Id d; /* Id offset into 'list of providers terminated by 0' as used by whatprovides; pool->whatprovides + d */
54 /* in case of binary rules, d == 0, w1 == p, w2 == other literal */
55 /* in case of disabled rules: ~d, aka -d - 1 */
56 Id w1, w2; /* watches, literals not-yet-decided */
57 /* if !w2, assertion, not rule */
58 Id n1, n2; /* next rules in linked list, corresponding to w1,w2 */
63 typedef struct _Solver {
65 Queue job; /* copy of the job we're solving */
67 Queue transaction; /* solver result */
68 Queue transaction_info; /* transaction obsoletes info */
69 Id *transaction_installed; /* data for installed packages */
71 Repo *installed; /* copy of pool->installed */
73 /* list of rules, ordered
74 * rpm rules first, then features, updates, jobs, learnt
75 * see start/end offsets below
77 Rule *rules; /* all rules */
78 Id nrules; /* [Offset] index of the last rule */
80 Queue ruleassertions; /* Queue of all assertion rules */
82 /* start/end offset for rule 'areas' */
84 Id rpmrules_end; /* [Offset] rpm rules end */
86 Id featurerules; /* feature rules start/end */
89 Id updaterules; /* policy rules, e.g. keep packages installed or update. All literals > 0 */
92 Id jobrules; /* user rules */
95 Id infarchrules; /* inferior arch rules */
98 Id duprules; /* dist upgrade rules */
101 Id learntrules; /* learnt rules, (end == nrules) */
103 Map noupdate; /* don't try to update these
104 installed solvables */
105 Map noobsoletes; /* ignore obsoletes for these
108 Map updatemap; /* bring those packages to the newest version */
109 Queue weakruleq; /* index into 'rules' for weak ones */
110 Map weakrulemap; /* map rule# to '1' for weak rules, 1..learntrules */
112 Id *watches; /* Array of rule offsets
113 * watches has nsolvables*2 entries and is addressed from the middle
114 * middle-solvable : decision to conflict, offset point to linked-list of rules
115 * middle+solvable : decision to install: offset point to linked-list of rules
118 Queue ruletojob; /* index into job queue: jobs for which a rule exits */
121 Queue decisionq; /* >0:install, <0:remove/conflict */
122 Queue decisionq_why; /* index of rule, Offset into rules */
124 Id *decisionmap; /* map for all available solvables,
126 * > 0: level of decision when installed,
127 * < 0: level of decision when conflict */
129 /* learnt rule history */
134 int (*solution_callback)(struct _Solver *solv, void *data);
135 void *solution_callback_data;
137 int propagate_index; /* index into decisionq for non-propagated decisions */
139 Queue problems; /* list of lists of conflicting rules, < 0 for job rules */
140 Queue solutions; /* refined problem storage space */
142 Queue recommendations; /* recommended packages */
143 Queue suggestions; /* suggested packages */
144 Queue orphaned; /* orphaned packages */
146 int stats_learned; /* statistic */
147 int stats_unsolvable; /* statistic */
149 Map recommendsmap; /* recommended packages from decisionmap */
150 Map suggestsmap; /* suggested packages from decisionmap */
151 int recommends_index; /* recommendsmap/suggestsmap is created up to this level */
153 Id *obsoletes; /* obsoletes for each installed solvable */
154 Id *obsoletes_data; /* data area for obsoletes */
155 Id *multiversionupdaters; /* updaters for multiversion packages in updatesystem mode */
157 /*-------------------------------------------------------------------------------------------------------------
158 * Solver configuration
159 *-------------------------------------------------------------------------------------------------------------*/
161 int fixsystem; /* repair errors in rpm dependency graph */
162 int allowdowngrade; /* allow to downgrade installed solvable */
163 int allowarchchange; /* allow to change architecture of installed solvables */
164 int allowvendorchange; /* allow to change vendor of installed solvables */
165 int allowuninstall; /* allow removal of installed solvables */
166 int updatesystem; /* update all packages to the newest version */
167 int allowvirtualconflicts; /* false: conflicts on package name, true: conflicts on package provides */
168 int allowselfconflicts; /* true: packages wich conflict with itself are installable */
169 int obsoleteusesprovides; /* true: obsoletes are matched against provides, not names */
170 int implicitobsoleteusesprovides; /* true: implicit obsoletes due to same name are matched against provides, not names */
171 int noupdateprovide; /* true: update packages needs not to provide old package */
172 int dosplitprovides; /* true: consider legacy split provides */
173 int dontinstallrecommended; /* true: do not install recommended packages */
174 int ignorealreadyrecommended; /* true: ignore recommended packages that were already recommended by the installed packages */
175 int dontshowinstalledrecommended; /* true: do not show recommended packages that are already installed */
177 /* distupgrade also needs updatesystem and dosplitprovides */
179 int distupgrade_removeunsupported;
181 int noinfarchcheck; /* true: do not forbid inferior architectures */
183 /* Callbacks for defining the bahaviour of the SAT solver */
185 /* Finding best candidate
187 * Callback definition:
188 * void bestSolvable (Pool *pool, Queue *canditates)
189 * candidates : List of canditates which has to be sorted by the function call
190 * return candidates: Sorted list of the candidates(first is the best).
192 BestSolvableCb bestSolvableCb;
194 /* Checking if two solvables has compatible architectures
196 * Callback definition:
197 * int archCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
199 * return 0 it the two solvables has compatible architectures
201 ArchCheckCb archCheckCb;
203 /* Checking if two solvables has compatible vendors
205 * Callback definition:
206 * int vendorCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
208 * return 0 it the two solvables has compatible architectures
210 VendorCheckCb vendorCheckCb;
212 /* Evaluate update candidate
214 * Callback definition:
215 * void pdateCandidateCb (Pool *pool, Solvable *solvable, Queue *canditates)
216 * solvable : for which updates should be search
217 * candidates : List of candidates (This list depends on other
218 * restrictions like architecture and vendor policies too)
220 UpdateCandidateCb updateCandidateCb;
223 /* some strange queue that doesn't belong here */
224 Queue covenantq; /* Covenants honored by this solver (generic locks) */
227 Map dupmap; /* packages from dup repos */
228 Map dupinvolvedmap; /* packages involved in dup process */
230 Queue *ruleinfoq; /* tmp space for solver_ruleinfo() */
237 #define SOLVER_SOLVABLE 0x01
238 #define SOLVER_SOLVABLE_NAME 0x02
239 #define SOLVER_SOLVABLE_PROVIDES 0x03
240 #define SOLVER_SOLVABLE_ONE_OF 0x04
242 #define SOLVER_SELECTMASK 0xff
244 #define SOLVER_NOOP 0x0000
245 #define SOLVER_INSTALL 0x0100
246 #define SOLVER_ERASE 0x0200
247 #define SOLVER_UPDATE 0x0300
248 #define SOLVER_WEAKENDEPS 0x0400
249 #define SOLVER_NOOBSOLETES 0x0500
250 #define SOLVER_LOCK 0x0600
251 #define SOLVER_DISTUPGRADE 0x0700
253 #define SOLVER_JOBMASK 0xff00
255 #define SOLVER_WEAK 0x010000
256 #define SOLVER_ESSENTIAL 0x020000
258 /* old API compatibility, do not use in new code */
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)
275 SOLVER_PROBLEM_UPDATE_RULE,
276 SOLVER_PROBLEM_JOB_RULE,
277 SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP,
278 SOLVER_PROBLEM_NOT_INSTALLABLE,
279 SOLVER_PROBLEM_NOTHING_PROVIDES_DEP,
280 SOLVER_PROBLEM_SAME_NAME,
281 SOLVER_PROBLEM_PACKAGE_CONFLICT,
282 SOLVER_PROBLEM_PACKAGE_OBSOLETES,
283 SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE,
284 SOLVER_PROBLEM_SELF_CONFLICT,
285 SOLVER_PROBLEM_RPM_RULE,
286 SOLVER_PROBLEM_DISTUPGRADE_RULE,
287 SOLVER_PROBLEM_INFARCH_RULE
291 SOLVER_RULE_UNKNOWN = 0,
292 SOLVER_RULE_RPM = 0x100,
293 SOLVER_RULE_RPM_NOT_INSTALLABLE,
294 SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP,
295 SOLVER_RULE_RPM_PACKAGE_REQUIRES,
296 SOLVER_RULE_RPM_SELF_CONFLICT,
297 SOLVER_RULE_RPM_PACKAGE_CONFLICT,
298 SOLVER_RULE_RPM_SAME_NAME,
299 SOLVER_RULE_RPM_PACKAGE_OBSOLETES,
300 SOLVER_RULE_RPM_IMPLICIT_OBSOLETES,
301 SOLVER_RULE_UPDATE = 0x200,
302 SOLVER_RULE_FEATURE = 0x300,
303 SOLVER_RULE_JOB = 0x400,
304 SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP,
305 SOLVER_RULE_DISTUPGRADE = 0x500,
306 SOLVER_RULE_INFARCH = 0x600,
307 SOLVER_RULE_LEARNT = 0x700
310 #define SOLVER_RULE_TYPEMASK 0xff00
312 /* backward compatibility */
313 #define SOLVER_PROBLEM_UPDATE_RULE SOLVER_RULE_UPDATE
314 #define SOLVER_PROBLEM_JOB_RULE SOLVER_RULE_JOB
315 #define SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP
316 #define SOLVER_PROBLEM_NOT_INSTALLABLE SOLVER_RULE_RPM_NOT_INSTALLABLE
317 #define SOLVER_PROBLEM_NOTHING_PROVIDES_DEP SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP
318 #define SOLVER_PROBLEM_SAME_NAME SOLVER_RULE_RPM_SAME_NAME
319 #define SOLVER_PROBLEM_PACKAGE_CONFLICT SOLVER_RULE_RPM_PACKAGE_CONFLICT
320 #define SOLVER_PROBLEM_PACKAGE_OBSOLETES SOLVER_RULE_RPM_PACKAGE_OBSOLETES
321 #define SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE SOLVER_RULE_RPM_PACKAGE_REQUIRES
322 #define SOLVER_PROBLEM_SELF_CONFLICT SOLVER_RULE_RPM_SELF_CONFLICT
323 #define SOLVER_PROBLEM_RPM_RULE SOLVER_RULE_RPM
324 #define SOLVER_PROBLEM_DISTUPGRADE_RULE SOLVER_RULE_DISTUPGRADE
325 #define SOLVER_PROBLEM_INFARCH_RULE SOLVER_RULE_INFARCH
328 #define SOLVER_SOLUTION_JOB (0)
329 #define SOLVER_SOLUTION_DISTUPGRADE (-1)
330 #define SOLVER_SOLUTION_INFARCH (-2)
332 extern Solver *solver_create(Pool *pool);
333 extern void solver_free(Solver *solv);
334 extern void solver_solve(Solver *solv, Queue *job);
336 extern int solver_dep_installed(Solver *solv, Id dep);
337 extern int solver_splitprovides(Solver *solv, Id dep);
339 extern Id solver_problem_count(Solver *solv);
340 extern Id solver_next_problem(Solver *solv, Id problem);
341 extern Id solver_solution_count(Solver *solv, Id problem);
342 extern Id solver_next_solution(Solver *solv, Id problem, Id solution);
343 extern Id solver_solutionelement_count(Solver *solv, Id problem, Id solution);
344 extern Id solver_next_solutionelement(Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp);
345 extern Id solver_findproblemrule(Solver *solv, Id problem);
346 extern void solver_findallproblemrules(Solver *solv, Id problem, Queue *rules);
348 extern SolverRuleinfo solver_problemruleinfo(Solver *solv, Queue *job, Id rid, Id *depp, Id *sourcep, Id *targetp);
349 extern SolverRuleinfo solver_ruleinfo(Solver *solv, Id rid, Id *fromp, Id *top, Id *depp);
350 extern int solver_allruleinfos(Solver *solv, Id rid, Queue *rq);
352 /* XXX: why is this not static? */
353 Id *solver_create_decisions_obsoletesmap(Solver *solv);
356 solver_dep_fulfilled(Solver *solv, Id dep)
358 Pool *pool = solv->pool;
363 Reldep *rd = GETRELDEP(pool, dep);
364 if (rd->flags == REL_AND)
366 if (!solver_dep_fulfilled(solv, rd->name))
368 return solver_dep_fulfilled(solv, rd->evr);
370 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
371 return solver_splitprovides(solv, rd->evr);
372 if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
373 return solver_dep_installed(solv, rd->evr);
375 FOR_PROVIDES(p, pp, dep)
377 if (solv->decisionmap[p] > 0)
384 solver_is_supplementing(Solver *solv, Solvable *s)
389 supp = s->repo->idarraydata + s->supplements;
390 while ((sup = *supp++) != 0)
391 if (solver_dep_fulfilled(solv, sup))
397 solver_is_enhancing(Solver *solv, Solvable *s)
402 enhp = s->repo->idarraydata + s->enhances;
403 while ((enh = *enhp++) != 0)
404 if (solver_dep_fulfilled(solv, enh))
409 void solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps);
410 int solver_calc_installsizechange(Solver *solv);
411 void solver_trivial_installable(Solver *solv, Queue *pkgs, Queue *res);
413 void solver_find_involved(Solver *solv, Queue *installedq, Solvable *s, Queue *q);
416 solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap)
418 pool_create_state_maps(solv->pool, &solv->decisionq, installedmap, conflictsmap);
421 /* iterate over all literals of a rule */
422 /* WARNING: loop body must not relocate whatprovidesdata, e.g. by
423 * looking up the providers of a dependency */
424 #define FOR_RULELITERALS(l, dp, r) \
425 for (l = r->d < 0 ? -r->d - 1 : r->d, \
426 dp = !l ? &r->w2 : pool->whatprovidesdata + l, \
427 l = r->p; l; l = (dp != &r->w2 + 1 ? *dp++ : 0))
429 /* iterate over all packages selected by a job */
430 #define FOR_JOB_SELECT(p, pp, select, what) \
431 for (pp = (select == SOLVER_SOLVABLE ? 0 : \
432 select == SOLVER_SOLVABLE_ONE_OF ? what : \
433 pool_whatprovides(pool, what)), \
434 p = (select == SOLVER_SOLVABLE ? what : pool->whatprovidesdata[pp++]) ; p ; p = pool->whatprovidesdata[pp++]) \
435 if (select != SOLVER_SOLVABLE_NAME || pool_match_nevr(pool, pool->solvables + p, what))
441 #endif /* SATSOLVER_SOLVER_H */