- split rule generation from solver.c into rules.c
[platform/upstream/libsolv.git] / src / rules.h
1 /*
2  * Copyright (c) 2007-2009, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * rules.h
10  *
11  */
12
13 #ifndef SATSOLVER_RULES_H
14 #define SATSOLVER_RULES_H
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 /* ----------------------------------------------
21  * Rule
22  *
23  *   providerN(B) == Package Id of package providing tag B
24  *   N = 1, 2, 3, in case of multiple providers
25  *
26  * A requires B : !A | provider1(B) | provider2(B)
27  *
28  * A conflicts B : (!A | !provider1(B)) & (!A | !provider2(B)) ...
29  *
30  * 'not' is encoded as a negative Id
31  *
32  * Binary rule: p = first literal, d = 0, w2 = second literal, w1 = p
33  *
34  * There are a lot of rules, so the struct is kept as small as
35  * possible. Do not add new members unless there is no other way.
36  */
37
38 typedef struct _Rule {
39   Id p;         /* first literal in rule */
40   Id d;         /* Id offset into 'list of providers terminated by 0' as used by whatprovides; pool->whatprovides + d */
41                 /* in case of binary rules, d == 0, w1 == p, w2 == other literal */
42                 /* in case of disabled rules: ~d, aka -d - 1 */
43   Id w1, w2;    /* watches, literals not-yet-decided */
44                 /* if !w2, assertion, not rule */
45   Id n1, n2;    /* next rules in linked list, corresponding to w1, w2 */
46 } Rule;
47
48
49 typedef enum {
50   SOLVER_RULE_UNKNOWN = 0,
51   SOLVER_RULE_RPM = 0x100,
52   SOLVER_RULE_RPM_NOT_INSTALLABLE,
53   SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP,
54   SOLVER_RULE_RPM_PACKAGE_REQUIRES,
55   SOLVER_RULE_RPM_SELF_CONFLICT,
56   SOLVER_RULE_RPM_PACKAGE_CONFLICT,
57   SOLVER_RULE_RPM_SAME_NAME,
58   SOLVER_RULE_RPM_PACKAGE_OBSOLETES,
59   SOLVER_RULE_RPM_IMPLICIT_OBSOLETES,
60   SOLVER_RULE_UPDATE = 0x200,
61   SOLVER_RULE_FEATURE = 0x300,
62   SOLVER_RULE_JOB = 0x400,
63   SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP,
64   SOLVER_RULE_DISTUPGRADE = 0x500,
65   SOLVER_RULE_INFARCH = 0x600,
66   SOLVER_RULE_LEARNT = 0x700
67 } SolverRuleinfo;
68
69 #define SOLVER_RULE_TYPEMASK    0xff00
70
71 struct _Solver;
72
73 /*-------------------------------------------------------------------
74  * disable rule
75  */
76
77 static inline void
78 solver_disablerule(struct _Solver *solv, Rule *r)
79 {
80   if (r->d >= 0)
81     r->d = -r->d - 1;
82 }
83
84 /*-------------------------------------------------------------------
85  * enable rule
86  */
87
88 static inline void
89 solver_enablerule(struct _Solver *solv, Rule *r)
90 {
91   if (r->d < 0)
92     r->d = -r->d - 1;
93 }
94
95 Rule *solver_addrule(struct _Solver *solv, Id p, Id d);
96 void solver_unifyrules(struct _Solver *solv);
97 int solver_samerule(struct _Solver *solv, Rule *r1, Rule *r2);
98 void solver_addrpmrulesforsolvable(struct _Solver *solv, Solvable *s, Map *m);
99 void solver_addrpmrulesforweak(struct _Solver *solv, Map *m);
100 void solver_addrpmrulesforupdaters(struct _Solver *solv, Solvable *s, Map *m, int allow_all);
101 int solver_allruleinfos(struct _Solver *solv, Id rid, Queue *rq);
102 SolverRuleinfo solver_ruleinfo(struct _Solver *solv, Id rid, Id *fromp, Id *top, Id *depp);
103
104
105 #ifdef __cplusplus
106 }
107 #endif
108
109 #endif
110