forked from rpm-software-management/rpm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrpmal.h
96 lines (82 loc) · 2.38 KB
/
rpmal.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#ifndef H_RPMAL
#define H_RPMAL
/** \ingroup rpmdep rpmtrans
* \file lib/rpmal.h
* Structures used for managing added/available package lists.
*/
#include <rpm/rpmtypes.h>
#include <rpm/rpmts.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct rpmal_s * rpmal;
/**
* Initialize available packckages, items, and directory list.
* @param pool shared string pool with base, dir and dependency names
* @param delta no. of entries to add on each realloc
* @param tsflags transaction control flags
* @param tscolor transaction color bits
* @param prefcolor preferred color
* @return al new available list
*/
RPM_GNUC_INTERNAL
rpmal rpmalCreate(rpmstrPool pool, int delta, rpmtransFlags tsflags,
rpm_color_t tscolor, rpm_color_t prefcolor);
/**
* Free available packages, items, and directory members.
* @param al available list
* @return NULL always
*/
RPM_GNUC_INTERNAL
rpmal rpmalFree(rpmal al);
/**
* Delete package from available list.
* @param al available list
* @param p package
*/
RPM_GNUC_INTERNAL
void rpmalDel(rpmal al, rpmte p);
/**
* Add package to available list.
* @param al available list
* @param p package
*/
RPM_GNUC_INTERNAL
void rpmalAdd(rpmal al, rpmte p);
/**
* Lookup all obsoleters for a dependency in the available list
* @param al available list
* @param ds dependency set
* @return obsoleting packages for ds, NULL if none
*/
RPM_GNUC_INTERNAL
rpmte * rpmalAllObsoletes(const rpmal al, const rpmds ds);
/**
* Lookup all providers for a dependency in the available list
* @param al available list
* @param ds dependency set
* @return best provider for the dependency, NULL if none
*/
RPM_GNUC_INTERNAL
rpmte * rpmalAllSatisfiesDepend(const rpmal al, const rpmds ds);
/**
* Lookup best provider for a dependency in the available list
* @param al available list
* @param te transaction element
* @param ds dependency set
* @return best provider for the dependency, NULL if none
*/
RPM_GNUC_INTERNAL
rpmte rpmalSatisfiesDepend(const rpmal al, const rpmte te, const rpmds ds);
/**
* Return index of a transaction element in the available list
* @param al available list
* @param te transaction element
* @return index, (unsigned int)-1 if not found
*/
RPM_GNUC_INTERNAL
unsigned int rpmalLookupTE(const rpmal al, const rpmte te);
#ifdef __cplusplus
}
#endif
#endif /* H_RPMAL */