rpm  4.12.0.1
rpmfileutil.h
Go to the documentation of this file.
1 #ifndef _RPMFILEUTIL_H
2 #define _RPMFILEUTIL_H
3 
9 #include <rpm/rpmutil.h>
10 #include <rpm/rpmio.h>
11 #include <rpm/rpmpgp.h>
12 #include <rpm/argv.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
20 typedef enum rpmCompressedMagic_e {
31 
41 int rpmDoDigest(int algo, const char * fn,int asAscii,
42  unsigned char * digest, rpm_loff_t * fsizep);
43 
49 FD_t rpmMkTemp(char *templ);
50 
61 FD_t rpmMkTempFile(const char * prefix, char **fn);
62 
71 int rpmioMkpath(const char * path, mode_t mode, uid_t uid, gid_t gid);
72 
81 int rpmMkdirs(const char *root, const char *pathstr);
82 
88 char * rpmCleanPath (char * path);
89 
100 char * rpmGenPath (const char * urlroot,
101  const char * urlmdir,
102  const char * urlfile);
103 
109 char * rpmGetPath (const char * path, ...) RPM_GNUC_NULL_TERMINATED;
110 
117 int rpmIsGlob(const char * pattern, int quote);
118 
126 int rpmGlob(const char * patterns, int * argcPtr, ARGV_t * argvPtr);
127 
133 char * rpmEscapeSpaces(const char * s);
134 
141 int rpmFileIsCompressed (const char * file, rpmCompressedMagic * compressed);
142 
149 int rpmFileHasSuffix(const char *path, const char *suffix);
150 
155 char * rpmGetCwd(void);
156 
157 #ifdef __cplusplus
158 }
159 #endif
160 #endif /* _RPMFILEUTIL_H */
char ** ARGV_t
Definition: argv.h:15
char * rpmGetCwd(void)
Like getcwd() but the result is malloced.
#define RPM_GNUC_NULL_TERMINATED
Definition: rpmutil.h:48
int rpmDoDigest(int algo, const char *fn, int asAscii, unsigned char *digest, rpm_loff_t *fsizep)
Calculate a file digest and size.
int rpmFileIsCompressed(const char *file, rpmCompressedMagic *compressed)
Return type of compression used in file.
char * rpmCleanPath(char *path)
Canonicalize file path.
char * rpmEscapeSpaces(const char *s)
Escape isspace(3) characters in string.
char * rpmGenPath(const char *urlroot, const char *urlmdir, const char *urlfile)
Merge 3 args into path, any or all of which may be a url.
struct _FD_s * FD_t
RPM IO file descriptor type.
Definition: rpmtypes.h:98
char * rpmGetPath(const char *path,...) RPM_GNUC_NULL_TERMINATED
Return (malloc'ed) expanded, canonicalized, file path.
int rpmGlob(const char *patterns, int *argcPtr, ARGV_t *argvPtr)
Return URL path(s) from a (URL prefixed) pattern glob.
int rpmFileHasSuffix(const char *path, const char *suffix)
Check if path (string) ends with given suffix.
enum rpmCompressedMagic_e rpmCompressedMagic
rpmCompressedMagic_e
Definition: rpmfileutil.h:20
static int mode
Definition: rpmdb.c:21
int rpmIsGlob(const char *pattern, int quote)
Check whether pattern contains any glob metacharacters.
int rpmMkdirs(const char *root, const char *pathstr)
Create several directories (including parents if needed) in one go.
uint64_t rpm_loff_t
Definition: rpmtypes.h:51
FD_t rpmMkTemp(char *templ)
Thin wrapper for mkstemp(3).
FD_t rpmMkTempFile(const char *prefix, char **fn)
Return file handle for a temporaray file.
int rpmioMkpath(const char *path, mode_t mode, uid_t uid, gid_t gid)
Insure that directories in path exist, creating as needed.