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
|
#ifndef _RPMTE_INTERNAL_H
#define _RPMTE_INTERNAL_H
#include <rpm/rpmte.h>
#include <rpm/rpmds.h>
#include "lib/rpmfs.h"
/** \ingroup rpmte
* Transaction element ordering chain linkage.
*/
typedef struct tsortInfo_s * tsortInfo;
RPM_GNUC_INTERNAL
rpmfi rpmteSetFI(rpmte te, rpmfi fi);
RPM_GNUC_INTERNAL
FD_t rpmteSetFd(rpmte te, FD_t fd);
RPM_GNUC_INTERNAL
int rpmteOpen(rpmte te, rpmts ts, int reload_fi);
RPM_GNUC_INTERNAL
int rpmteClose(rpmte te, rpmts ts, int reset_fi);
RPM_GNUC_INTERNAL
FD_t rpmtePayload(rpmte te);
RPM_GNUC_INTERNAL
int rpmteMarkFailed(rpmte te, rpmts ts);
RPM_GNUC_INTERNAL
int rpmteHaveTransScript(rpmte te, rpmTag tag);
RPM_GNUC_INTERNAL
void rpmteAddProblem(rpmte te, rpmProblemType type,
const char *dn, const char *bn,
const char *altNEVR, uint64_t number);
RPM_GNUC_INTERNAL
void rpmteAddDepProblem(rpmte te, const char * pkgNEVR, rpmds ds,
fnpyKey * suggestedKeys, int adding);
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);
#endif /* _RPMTE_INTERNAL_H */
|