Imported Upstream version 0.6.28
[platform/upstream/libsolv.git] / src / policy.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  * Generic policy interface for SAT solver
10  * The policy* function can be "overloaded" by defining a callback in the solver struct.
11  */
12
13 #include "solver.h"
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 #define POLICY_MODE_CHOOSE      0
20 #define POLICY_MODE_RECOMMEND   1
21 #define POLICY_MODE_SUGGEST     2
22 #define POLICY_MODE_CHOOSE_NOREORDER    3       /* internal, do not use */
23 #define POLICY_MODE_SUPPLEMENT  4       /* internal, do not use */
24
25
26 #define POLICY_ILLEGAL_DOWNGRADE        1
27 #define POLICY_ILLEGAL_ARCHCHANGE       2
28 #define POLICY_ILLEGAL_VENDORCHANGE     4
29 #define POLICY_ILLEGAL_NAMECHANGE       8
30
31 extern void policy_filter_unwanted(Solver *solv, Queue *plist, int mode);
32 extern int  policy_illegal_archchange(Solver *solv, Solvable *s1, Solvable *s2);
33 extern int  policy_illegal_vendorchange(Solver *solv, Solvable *s1, Solvable *s2);
34 extern int  policy_is_illegal(Solver *solv, Solvable *s1, Solvable *s2, int ignore);
35 extern void policy_findupdatepackages(Solver *solv, Solvable *s, Queue *qs, int allowall);
36 extern const char *policy_illegal2str(Solver *solv, int illegal, Solvable *s, Solvable *rs);
37 extern void policy_update_recommendsmap(Solver *solv);
38
39 extern void policy_create_obsolete_index(Solver *solv);
40
41 extern void pool_best_solvables(Pool *pool, Queue *plist, int flags);
42
43 /* internal, do not use */
44 extern void prune_to_best_version(Pool *pool, Queue *plist);
45 extern void policy_prefer_favored(Solver *solv, Queue *plist);
46
47
48 #ifdef __cplusplus
49 }
50 #endif