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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
#ifndef _RPMTE_INTERNAL_H
#define _RPMTE_INTERNAL_H
#include <rpm/rpmte.h>
#include <rpm/rpmds.h>
#include "lib/rpmfs.h"
typedef enum pkgGoal_e {
PKG_NONE = 0,
/* permit using rpmteType() for install + erase goals */
PKG_INSTALL = TR_ADDED,
PKG_ERASE = TR_REMOVED,
/* permit using scriptname for these for now... */
PKG_VERIFY = RPMTAG_VERIFYSCRIPT,
PKG_PRETRANS = RPMTAG_PRETRANS,
PKG_POSTTRANS = RPMTAG_POSTTRANS,
} pkgGoal;
/** \ingroup rpmte
* Transaction element ordering chain linkage.
*/
typedef struct tsortInfo_s * tsortInfo;
#ifdef __cplusplus
extern "C" {
#endif
/** \ingroup rpmte
* Create a transaction element.
* @param ts transaction set
* @param h header
* @param type TR_ADDED/TR_REMOVED
* @param key (TR_ADDED) package retrieval key (e.g. file name)
* @param relocs (TR_ADDED) package file relocations
* @return new transaction element
*/
RPM_GNUC_INTERNAL
rpmte rpmteNew(rpmts ts, Header h, rpmElementType type, fnpyKey key,
rpmRelocation * relocs);
/** \ingroup rpmte
* Destroy a transaction element.
* @param te transaction element
* @return NULL always
*/
RPM_GNUC_INTERNAL
rpmte rpmteFree(rpmte te);
RPM_GNUC_INTERNAL
rpmfi rpmteSetFI(rpmte te, rpmfi fi);
RPM_GNUC_INTERNAL
FD_t rpmteSetFd(rpmte te, FD_t fd);
RPM_GNUC_INTERNAL
FD_t rpmtePayload(rpmte te);
RPM_GNUC_INTERNAL
int rpmteProcess(rpmte te, pkgGoal goal);
RPM_GNUC_INTERNAL
void rpmteAddProblem(rpmte te, rpmProblemType type,
const char *altNEVR, const char *str, uint64_t number);
RPM_GNUC_INTERNAL
void rpmteAddDepProblem(rpmte te, const char * pkgNEVR, rpmds ds,
fnpyKey * suggestedKeys);
RPM_GNUC_INTERNAL
const char * rpmteTypeString(rpmte te);
RPM_GNUC_INTERNAL
tsortInfo rpmteTSI(rpmte te);
RPM_GNUC_INTERNAL
void rpmteSetTSI(rpmte te, tsortInfo tsi);
/* XXX should be internal too but build code needs for now... */
rpmfs rpmteGetFileStates(rpmte te);
/* XXX here for now... */
/**
* Relocate files in header.
* @todo multilib file dispositions need to be checked.
* @param relocations relocations
* @param numRelocations number of relocations
* @param fs file state set
* @param h package header to relocate
*/
RPM_GNUC_INTERNAL
void rpmRelocateFileList(rpmRelocation *relocs, int numRelocations, rpmfs fs, Header h);
/** \ingroup rpmte
* Retrieve size in bytes of package header.
* @param te transaction element
* @return size in bytes of package file.
*/
RPM_GNUC_INTERNAL
unsigned int rpmteHeaderSize(rpmte te);
/**
* Package state machine driver.
* @param ts transaction set
* @param te transaction element
* @param goal state machine goal
* @return 0 on success
*/
RPM_GNUC_INTERNAL
rpmRC rpmpsmRun(rpmts ts, rpmte te, pkgGoal goal);
/** \ingroup rpmte
* Add a collection to the list of last collections for the installation
* section of a transaction element
* @param te transaction element
* @param collname collection name
* @return 0 on success, non-zero on error
*/
RPM_GNUC_INTERNAL
int rpmteAddToLastInCollectionAdd(rpmte te, const char * collname);
/** \ingroup rpmte
* Add a collection to the list of last collections for the installation
* or removal section of a transaction element
* @param te transaction element
* @param collname collection name
* @return 0 on success, non-zero on error
*/
RPM_GNUC_INTERNAL
int rpmteAddToLastInCollectionAny(rpmte te, const char * collname);
/** \ingroup rpmte
* Add a collection to the list of first collections for the removal
* section of a transaction element
* @param te transaction element
* @param collname collection name
* @return 0 on success, non-zero on error
*/
RPM_GNUC_INTERNAL
int rpmteAddToFirstInCollectionRemove(rpmte te, const char * collname);
/** \ingroup rpmte
* Sends the open te plugin hook for each plugins with the transaction element open
* @param te transaction element
* @return 0 on success, non-zero on error
*/
RPM_GNUC_INTERNAL
rpmRC rpmteSetupCollectionPlugins(rpmte te);
#ifdef __cplusplus
}
#endif
#endif /* _RPMTE_INTERNAL_H */
|