rpm  4.12.0.1
rpmfc.h
Go to the documentation of this file.
1 #ifndef _H_RPMFC_
2 #define _H_RPMFC_
3 
9 #include <rpm/rpmtypes.h>
10 #include <rpm/argv.h> /* for ARGV_t */
11 #include <rpm/rpmspec.h> /* for Package */
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 extern int _rpmfc_debug;
18 
21 typedef struct rpmfc_s * rpmfc;
22 
25 enum FCOLOR_e {
27  RPMFC_ELF32 = (1 << 0),
28  RPMFC_ELF64 = (1 << 1),
29  RPMFC_ELFMIPSN32 = (1 << 2),
31  /* (1 << 3) leaks into package headers, reserved */
32 
33  RPMFC_WHITE = (1 << 29),
34  RPMFC_INCLUDE = (1 << 30),
35  RPMFC_ERROR = (1 << 31)
36 };
37 
41 
44 typedef const struct rpmfcTokens_s * rpmfcToken;
45 
53 void rpmfcPrint(const char * msg, rpmfc fc, FILE * fp);
54 
60 rpmfc rpmfcFree(rpmfc fc);
61 
68 rpmfc rpmfcCreate(const char *rootDir, rpmFlags flags);
69 
76 rpmfc rpmfcNew(void);
77 
78 
86 rpmRC rpmfcClassify(rpmfc fc, ARGV_t argv, rpm_mode_t * fmode);
87 
93 rpmRC rpmfcApply(rpmfc fc);
94 
100 rpmds rpmfcProvides(rpmfc fc);
101 
107 rpmds rpmfcRequires(rpmfc fc);
108 
115 rpmds rpmfcDependencies(rpmfc fc, rpmTagVal tagN);
116 
117 #ifdef __cplusplus
118 }
119 #endif
120 
121 #endif /* _H_RPMFC_ */
rpmfc rpmfcFree(rpmfc fc)
Destroy a file classifier.
rpmfc rpmfcCreate(const char *rootDir, rpmFlags flags)
Create a file classifier.
char ** ARGV_t
Definition: argv.h:15
#define RPM_GNUC_DEPRECATED
Definition: rpmutil.h:80
void rpmfcPrint(const char *msg, rpmfc fc, FILE *fp)
Print results of file classification.
FCOLOR_e
Definition: rpmfc.h:25
uint32_t rpmFlags
Definition: rpmtypes.h:42
int _rpmfc_debug
struct rpmfc_s * rpmfc
Definition: rpmfc.h:21
rpmds rpmfcDependencies(rpmfc fc, rpmTagVal tagN)
Retrieve file classification dependencies.
rpmds rpmfcRequires(rpmfc fc)
Retrieve file classification requires.
rpmFlags FCOLOR_t
Definition: rpmfc.h:40
struct rpmds_s * rpmds
Definition: rpmtypes.h:65
rpmRC rpmfcClassify(rpmfc fc, ARGV_t argv, rpm_mode_t *fmode)
Build file class dictionary and mappings.
rpm_tag_t rpmTagVal
Definition: rpmtypes.h:30
rpmds rpmfcProvides(rpmfc fc)
Retrieve file classification provides.
RPM_GNUC_DEPRECATED rpmfc rpmfcNew(void)
uint16_t rpm_mode_t
Definition: rpmtypes.h:53
rpmRC rpmfcApply(rpmfc fc)
Build file/package dependency dictionary and mappings.
const struct rpmfcTokens_s * rpmfcToken
Definition: rpmfc.h:44
enum rpmRC_e rpmRC
Package read return codes.
#define RPMFC_ELF
Definition: rpmfc.h:30