2 * Copyright (c) 2007, Novell Inc.
4 * This program is licensed under the BSD license, read LICENSE.BSD
5 * for further information
13 #ifndef LIBSOLV_SOLVER_H
14 #define LIBSOLV_SOLVER_H
20 #include "pooltypes.h"
25 #include "transaction.h"
30 * Callback definitions in order to "overwrite" the policies by an external application.
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);
40 Pool *pool; /* back pointer to pool */
41 Queue job; /* copy of the job we're solving */
43 int (*solution_callback)(struct _Solver *solv, void *data);
44 void *solution_callback_data;
46 /* Callbacks for defining the bahaviour of the solver */
48 /* Finding best candidate
50 * Callback definition:
51 * void bestSolvable (Pool *pool, Queue *canditates)
52 * candidates : List of canditates which has to be sorted by the function call
53 * return candidates: Sorted list of the candidates(first is the best).
55 BestSolvableCb bestSolvableCb;
57 /* Checking if two solvables has compatible architectures
59 * Callback definition:
60 * int archCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
62 * return 0 it the two solvables has compatible architectures
64 ArchCheckCb archCheckCb;
66 /* Checking if two solvables has compatible vendors
68 * Callback definition:
69 * int vendorCheck (Pool *pool, Solvable *solvable1, Solvable *solvable2);
71 * return 0 it the two solvables has compatible architectures
73 VendorCheckCb vendorCheckCb;
75 /* Evaluate update candidate
77 * Callback definition:
78 * void UpdateCandidateCb (Pool *pool, Solvable *solvable, Queue *canditates)
79 * solvable : for which updates should be search
80 * candidates : List of candidates (This list depends on other
81 * restrictions like architecture and vendor policies too)
83 UpdateCandidateCb updateCandidateCb;
85 #ifdef LIBSOLV_INTERNAL
86 Repo *installed; /* copy of pool->installed */
88 /* list of rules, ordered
89 * rpm rules first, then features, updates, jobs, learnt
90 * see start/end offsets below
92 Rule *rules; /* all rules */
93 Id nrules; /* [Offset] index of the last rule */
95 Queue ruleassertions; /* Queue of all assertion rules */
97 /* start/end offset for rule 'areas' */
99 Id rpmrules_end; /* [Offset] rpm rules end */
101 Id featurerules; /* feature rules start/end */
104 Id updaterules; /* policy rules, e.g. keep packages installed or update. All literals > 0 */
107 Id jobrules; /* user rules */
110 Id infarchrules; /* inferior arch rules */
113 Id duprules; /* dist upgrade rules */
116 Id choicerules; /* choice rules (always weak) */
120 Id learntrules; /* learnt rules, (end == nrules) */
122 Map noupdate; /* don't try to update these
123 installed solvables */
124 Map noobsoletes; /* ignore obsoletes for these (multiinstall) */
126 Map updatemap; /* bring these installed packages to the newest version */
127 int updatemap_all; /* bring all packages to the newest version */
129 Map fixmap; /* fix these packages */
130 int fixmap_all; /* fix all packages */
132 Queue weakruleq; /* index into 'rules' for weak ones */
133 Map weakrulemap; /* map rule# to '1' for weak rules, 1..learntrules */
135 Id *watches; /* Array of rule offsets
136 * watches has nsolvables*2 entries and is addressed from the middle
137 * middle-solvable : decision to conflict, offset point to linked-list of rules
138 * middle+solvable : decision to install: offset point to linked-list of rules
141 Queue ruletojob; /* index into job queue: jobs for which a rule exits */
144 Queue decisionq; /* >0:install, <0:remove/conflict */
145 Queue decisionq_why; /* index of rule, Offset into rules */
147 Id *decisionmap; /* map for all available solvables,
149 * > 0: level of decision when installed,
150 * < 0: level of decision when conflict */
152 int decisioncnt_update;
153 int decisioncnt_keep;
154 int decisioncnt_resolve;
155 int decisioncnt_weak;
156 int decisioncnt_orphan;
158 /* learnt rule history */
163 int propagate_index; /* index into decisionq for non-propagated decisions */
165 Queue problems; /* list of lists of conflicting rules, < 0 for job rules */
166 Queue solutions; /* refined problem storage space */
168 Queue orphaned; /* orphaned packages (to be removed?) */
170 int stats_learned; /* statistic */
171 int stats_unsolvable; /* statistic */
173 Map recommendsmap; /* recommended packages from decisionmap */
174 Map suggestsmap; /* suggested packages from decisionmap */
175 int recommends_index; /* recommendsmap/suggestsmap is created up to this level */
177 Id *obsoletes; /* obsoletes for each installed solvable */
178 Id *obsoletes_data; /* data area for obsoletes */
179 Id *multiversionupdaters; /* updaters for multiversion packages in updatesystem mode */
181 /*-------------------------------------------------------------------------------------------------------------
182 * Solver configuration
183 *-------------------------------------------------------------------------------------------------------------*/
185 int allowdowngrade; /* allow to downgrade installed solvable */
186 int allownamechange; /* allow to change name of installed solvables */
187 int allowarchchange; /* allow to change architecture of installed solvables */
188 int allowvendorchange; /* allow to change vendor of installed solvables */
189 int allowuninstall; /* allow removal of installed solvables */
190 int noupdateprovide; /* true: update packages needs not to provide old package */
191 int dosplitprovides; /* true: consider legacy split provides */
192 int dontinstallrecommended; /* true: do not install recommended packages */
193 int addalreadyrecommended; /* true: also install recommended packages that were already recommended by the installed packages */
194 int dontshowinstalledrecommended; /* true: do not show recommended packages that are already installed */
196 int noinfarchcheck; /* true: do not forbid inferior architectures */
197 int keepexplicitobsoletes; /* true: honor obsoletes during multiinstall */
200 Map dupmap; /* dup these packages*/
201 int dupmap_all; /* dup all packages */
202 Map dupinvolvedmap; /* packages involved in dup process */
203 int dup_allowdowngrade; /* dup mode: allow to downgrade installed solvable */
204 int dup_allownamechange; /* dup mode: allow to change name of installed solvable */
205 int dup_allowarchchange; /* dup mode: allow to change architecture of installed solvables */
206 int dup_allowvendorchange; /* dup mode: allow to change vendor of installed solvables */
208 Map droporphanedmap; /* packages to drop in dup mode */
209 int droporphanedmap_all;
211 Map cleandepsmap; /* try to drop these packages as of cleandeps erases */
213 Queue *ruleinfoq; /* tmp space for solver_ruleinfo() */
215 Queue *cleandeps_updatepkgs; /* packages we update in cleandeps mode */
216 Queue *cleandeps_mistakes; /* mistakes we made */
217 #endif /* LIBSOLV_INTERNAL */
220 typedef struct _Solver Solver;
226 #define SOLVER_SOLVABLE 0x01
227 #define SOLVER_SOLVABLE_NAME 0x02
228 #define SOLVER_SOLVABLE_PROVIDES 0x03
229 #define SOLVER_SOLVABLE_ONE_OF 0x04
230 #define SOLVER_SOLVABLE_REPO 0x05
231 #define SOLVER_SOLVABLE_ALL 0x06
233 #define SOLVER_SELECTMASK 0xff
235 #define SOLVER_NOOP 0x0000
236 #define SOLVER_INSTALL 0x0100
237 #define SOLVER_ERASE 0x0200
238 #define SOLVER_UPDATE 0x0300
239 #define SOLVER_WEAKENDEPS 0x0400
240 #define SOLVER_NOOBSOLETES 0x0500
241 #define SOLVER_LOCK 0x0600
242 #define SOLVER_DISTUPGRADE 0x0700
243 #define SOLVER_VERIFY 0x0800
244 #define SOLVER_DROP_ORPHANED 0x0900
245 #define SOLVER_USERINSTALLED 0x0a00
247 #define SOLVER_JOBMASK 0xff00
249 #define SOLVER_WEAK 0x010000
250 #define SOLVER_ESSENTIAL 0x020000
251 #define SOLVER_CLEANDEPS 0x040000
252 /* ORUPDATE makes SOLVER_INSTALL not prune to installed
253 * packages, thus updating installed packages */
254 #define SOLVER_ORUPDATE 0x080000
255 /* FORCEBEST makes the solver insist on best packages, so
256 * you will get problem reported if the best package is
257 * not installable. This can be used with INSTALL, UPDATE
259 /* Also, it's not implemented yet ;) */
260 #define SOLVER_FORCEBEST 0x100000
262 #define SOLVER_SETEV 0x01000000
263 #define SOLVER_SETEVR 0x02000000
264 #define SOLVER_SETARCH 0x04000000
265 #define SOLVER_SETVENDOR 0x08000000
266 #define SOLVER_SETREPO 0x10000000
267 #define SOLVER_NOAUTOSET 0x20000000
268 #define SOLVER_SETNAME 0x40000000
270 #define SOLVER_SETMASK 0x7f000000
272 #define SOLVER_REASON_UNRELATED 0
273 #define SOLVER_REASON_UNIT_RULE 1
274 #define SOLVER_REASON_KEEP_INSTALLED 2
275 #define SOLVER_REASON_RESOLVE_JOB 3
276 #define SOLVER_REASON_UPDATE_INSTALLED 4
277 #define SOLVER_REASON_CLEANDEPS_ERASE 5
278 #define SOLVER_REASON_RESOLVE 6
279 #define SOLVER_REASON_WEAKDEP 7
280 #define SOLVER_REASON_RESOLVE_ORPHAN 8
282 #define SOLVER_REASON_RECOMMENDED 16
283 #define SOLVER_REASON_SUPPLEMENTED 17
286 #define SOLVER_FLAG_ALLOW_DOWNGRADE 1
287 #define SOLVER_FLAG_ALLOW_ARCHCHANGE 2
288 #define SOLVER_FLAG_ALLOW_VENDORCHANGE 3
289 #define SOLVER_FLAG_ALLOW_UNINSTALL 4
290 #define SOLVER_FLAG_NO_UPDATEPROVIDE 5
291 #define SOLVER_FLAG_SPLITPROVIDES 6
292 #define SOLVER_FLAG_IGNORE_RECOMMENDED 7
293 #define SOLVER_FLAG_ADD_ALREADY_RECOMMENDED 8
294 #define SOLVER_FLAG_NO_INFARCHCHECK 9
295 #define SOLVER_FLAG_ALLOW_NAMECHANGE 10
296 #define SOLVER_FLAG_KEEP_EXPLICIT_OBSOLETES 11
298 extern Solver *solver_create(Pool *pool);
299 extern void solver_free(Solver *solv);
300 extern int solver_solve(Solver *solv, Queue *job);
301 extern Transaction *solver_create_transaction(Solver *solv);
302 extern int solver_set_flag(Solver *solv, int flag, int value);
303 extern int solver_get_flag(Solver *solv, int flag);
305 extern int solver_get_decisionlevel(Solver *solv, Id p);
306 extern void solver_get_decisionqueue(Solver *solv, Queue *decisionq);
307 extern int solver_get_lastdecisionblocklevel(Solver *solv);
308 extern void solver_get_decisionblock(Solver *solv, int level, Queue *decisionq);
310 extern void solver_get_orphaned(Solver *solv, Queue *orphanedq);
311 extern void solver_get_recommendations(Solver *solv, Queue *recommendationsq, Queue *suggestionsq, int noselected);
312 extern void solver_get_unneeded(Solver *solv, Queue *unneededq, int filtered);
314 extern int solver_describe_decision(Solver *solv, Id p, Id *infop);
315 extern void solver_describe_weakdep_decision(Solver *solv, Id p, Queue *whyq);
318 extern void solver_calculate_noobsmap(Pool *pool, Queue *job, Map *noobsmap);
319 extern void solver_create_state_maps(Solver *solv, Map *installedmap, Map *conflictsmap);
321 /* XXX: why is this not static? */
322 Id *solver_create_decisions_obsoletesmap(Solver *solv);
324 void solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps);
325 int solver_calc_installsizechange(Solver *solv);
326 void solver_trivial_installable(Solver *solv, Queue *pkgs, Queue *res);
329 /* iterate over all literals of a rule */
330 /* WARNING: loop body must not relocate whatprovidesdata, e.g. by
331 * looking up the providers of a dependency */
332 #define FOR_RULELITERALS(l, dp, r) \
333 for (l = r->d < 0 ? -r->d - 1 : r->d, \
334 dp = !l ? &r->w2 : pool->whatprovidesdata + l, \
335 l = r->p; l; l = (dp != &r->w2 + 1 ? *dp++ : 0))
337 /* iterate over all packages selected by a job */
338 #define FOR_JOB_SELECT(p, pp, select, what) \
339 if (select == SOLVER_SOLVABLE_REPO || select == SOLVER_SOLVABLE_ALL) \
341 else for (pp = (select == SOLVER_SOLVABLE ? 0 : \
342 select == SOLVER_SOLVABLE_ONE_OF ? what : \
343 pool_whatprovides(pool, what)), \
344 p = (select == SOLVER_SOLVABLE ? what : pool->whatprovidesdata[pp++]) ; p ; p = pool->whatprovidesdata[pp++]) \
345 if (select != SOLVER_SOLVABLE_NAME || pool_match_nevr(pool, pool->solvables + p, what))
351 #endif /* LIBSOLV_SOLVER_H */