- Grand Renaming of rpm data types.
[platform/upstream/rpm.git] / lib / rpmps.h
1 #ifndef H_RPMPS
2 #define H_RPMPS
3
4 /** \ingroup rpmps
5  * \file lib/rpmps.h
6  * Structures and prototypes used for an "rpmps" problem set.
7  */
8
9 /**
10  * Raw data for an element of a problem set.
11  */
12 typedef /*@abstract@*/ struct rpmProblem_s * rpmProblem;
13
14 /**
15  * Transaction problems found while processing a transaction set/
16  */
17 typedef /*@abstract@*/ /*@refcounted@*/ struct rpmps_s * rpmps;
18
19 /**
20  * Enumerate transaction set problem types.
21  */
22 typedef enum rpmProblemType_e {
23     RPMPROB_BADARCH,    /*!< package ... is for a different architecture */
24     RPMPROB_BADOS,      /*!< package ... is for a different operating system */
25     RPMPROB_PKG_INSTALLED, /*!< package ... is already installed */
26     RPMPROB_BADRELOCATE,/*!< path ... is not relocateable for package ... */
27     RPMPROB_REQUIRES,   /*!< package ... has unsatisfied Requires: ... */
28     RPMPROB_CONFLICT,   /*!< package ... has unsatisfied Conflicts: ... */
29     RPMPROB_NEW_FILE_CONFLICT, /*!< file ... conflicts between attemped installs of ... */
30     RPMPROB_FILE_CONFLICT,/*!< file ... from install of ... conflicts with file from package ... */
31     RPMPROB_OLDPACKAGE, /*!< package ... (which is newer than ...) is already installed */
32     RPMPROB_DISKSPACE,  /*!< installing package ... needs ... on the ... filesystem */
33     RPMPROB_DISKNODES,  /*!< installing package ... needs ... on the ... filesystem */
34     RPMPROB_BADPRETRANS /*!< (unimplemented) */
35  } rpmProblemType;
36
37 /**
38  */
39 struct rpmProblem_s {
40 /*@only@*/ /*@null@*/
41     char * pkgNEVR;
42 /*@only@*/ /*@null@*/
43     char * altNEVR;
44 /*@exposed@*/ /*@null@*/
45     fnpyKey key;
46     rpmProblemType type;
47     int ignoreProblem;
48 /*@only@*/ /*@null@*/
49     char * str1;
50     unsigned long ulong1;
51 };
52
53 /**
54  */
55 struct rpmps_s {
56     int numProblems;            /*!< Current probs array size. */
57     int numProblemsAlloced;     /*!< Allocated probs array size. */
58     rpmProblem probs;           /*!< Array of specific problems. */
59 /*@refs@*/
60     int nrefs;                  /*!< Reference count. */
61 };
62
63 #ifdef __cplusplus
64 extern "C" {
65 #endif
66
67 /**
68  */
69 void printDepFlags(FILE *fp, const char *version, int flags)
70         /*@globals fileSystem @*/
71         /*@modifies *fp, fileSystem @*/;
72
73 /**
74  * Print a problem array.
75  * @param fp            output file
76  * @param ps            dependency problems
77  */
78 void printDepProblems(FILE * fp, /*@null@*/ const rpmps ps)
79         /*@globals fileSystem @*/
80         /*@modifies *fp, fileSystem @*/;
81
82 /**
83  * Return formatted string representation of a problem.
84  * @param prob          rpm problem
85  * @return              formatted string (malloc'd)
86  */
87 /*@-redecl@*/   /* LCL: is confused. */
88 /*@only@*/ extern const char * rpmProblemString(const rpmProblem prob)
89         /*@*/;
90 /*@=redecl@*/
91
92 /**
93  * Unreference a problem set instance.
94  * @param ps            problem set
95  * @param msg
96  * @return              problem set
97  */
98 /*@unused@*/
99 rpmps rpmpsUnlink (/*@killref@*/ /*@returned@*/ rpmps ps,
100                 const char * msg)
101         /*@modifies ps @*/;
102
103 /** @todo Remove debugging entry from the ABI. */
104 /*@null@*/
105 rpmps XrpmpsUnlink (/*@killref@*/ /*@returned@*/ rpmps ps,
106                 const char * msg, const char * fn, unsigned ln)
107         /*@modifies ps @*/;
108 #define rpmpsUnlink(_ps, _msg)  XrpmpsUnlink(_ps, _msg, __FILE__, __LINE__)
109
110 /**
111  * Reference a problem set instance.
112  * @param ps            transaction set
113  * @param msg
114  * @return              new transaction set reference
115  */
116 /*@unused@*/
117 rpmps rpmpsLink (rpmps ps, const char * msg)
118         /*@modifies ps @*/;
119
120 /** @todo Remove debugging entry from the ABI. */
121 rpmps XrpmpsLink (rpmps ps,
122                 const char * msg, const char * fn, unsigned ln)
123         /*@modifies ps @*/;
124 #define rpmpsLink(_ps, _msg)    XrpmpsLink(_ps, _msg, __FILE__, __LINE__)
125
126 /**
127  * Create a problem set.
128  */
129 rpmps rpmpsCreate(void)
130         /*@*/;
131
132 /**
133  * Destroy a problem set.
134  * @param ps            problem set
135  * @return              NULL always
136  */
137 /*@null@*/
138 rpmps rpmpsFree(/*@killref@*/ /*@only@*/ /*@null@*/ rpmps ps)
139         /*@modifies ps @*/;
140
141 /**
142  * Output formatted string representation of a problem to file handle.
143  * @deprecated API: prob used to be passed by value, now passed by reference.
144  * @param fp            file handle
145  * @param prob          rpm problem
146  */
147 void rpmProblemPrint(FILE *fp, rpmProblem prob)
148         /*@globals fileSystem @*/
149         /*@modifies prob, *fp, fileSystem @*/;
150
151 /**
152  * Print problems to file handle.
153  * @param fp            file handle
154  * @param ps            problem set
155  */
156 void rpmpsPrint(FILE *fp, /*@null@*/ rpmps ps)
157         /*@globals fileSystem @*/
158         /*@modifies *fp, ps, fileSystem @*/;
159
160 /**
161  * Append a problem to set.
162  */
163 void rpmpsAppend(/*@null@*/ rpmps ps, rpmProblemType type,
164                 /*@null@*/ const char * pkgNEVR,
165                 /*@exposed@*/ /*@null@*/ fnpyKey key,
166                 /*@null@*/ const char * dn, /*@null@*/ const char * bn,
167                 /*@null@*/ const char * altNEVR,
168                 unsigned long ulong1)
169         /*@modifies ps @*/;
170
171 /**
172  * Filter a problem set.
173  *
174  * As the problem sets are generated in an order solely dependent
175  * on the ordering of the packages in the transaction, and that
176  * ordering can't be changed, the problem sets must be parallel to
177  * one another. Additionally, the filter set must be a subset of the
178  * target set, given the operations available on transaction set.
179  * This is good, as it lets us perform this trim in linear time, rather
180  * then logarithmic or quadratic.
181  *
182  * @param ps            problem set
183  * @param filter        problem filter (or NULL)
184  * @return              0 no problems, 1 if problems remain
185  */
186 int rpmpsTrim(/*@null@*/ rpmps ps, /*@null@*/ rpmps filter)
187         /*@modifies ps @*/;
188
189 #ifdef __cplusplus
190 }
191 #endif
192
193 #endif  /* H_RPMPS */