rpm
4.12.0.1
|
Go to the source code of this file.
Macros | |
#define | RPMERR_CHECK_ERRNO -32768 |
Enumerations | |
enum | rpmfilesErrorCodes { RPMERR_ITER_END = -1, RPMERR_BAD_MAGIC = -2, RPMERR_BAD_HEADER = -3, RPMERR_HDR_SIZE = -4, RPMERR_UNKNOWN_FILETYPE = -5, RPMERR_MISSING_FILE = -6, RPMERR_DIGEST_MISMATCH = -7, RPMERR_INTERNAL = -8, RPMERR_UNMAPPED_FILE = -9, RPMERR_ENOENT = -10, RPMERR_ENOTEMPTY = -11, RPMERR_FILE_SIZE = -12, RPMERR_OPEN_FAILED = -32768, RPMERR_CHMOD_FAILED = -32769, RPMERR_CHOWN_FAILED = -32770, RPMERR_WRITE_FAILED = -32771, RPMERR_UTIME_FAILED = -32772, RPMERR_UNLINK_FAILED = -32773, RPMERR_RENAME_FAILED = -32774, RPMERR_SYMLINK_FAILED = -32775, RPMERR_STAT_FAILED = -32776, RPMERR_LSTAT_FAILED = -32777, RPMERR_MKDIR_FAILED = -32778, RPMERR_RMDIR_FAILED = -32779, RPMERR_MKNOD_FAILED = -32780, RPMERR_MKFIFO_FAILED = -32781, RPMERR_LINK_FAILED = -32782, RPMERR_READLINK_FAILED = -32783, RPMERR_READ_FAILED = -32784, RPMERR_COPY_FAILED = -32785, RPMERR_LSETFCON_FAILED = -32786, RPMERR_SETCAP_FAILED = -32787 } |
Error codes for archive and file handling. More... | |
Functions | |
char * | rpmfileStrerror (int rc) |
Return formatted error message on payload handling failure. More... | |
rpmfi | rpmfiNewArchiveWriter (FD_t fd, rpmfiles files) |
Get new file iterator for writing the archive content. More... | |
rpmfi | rpmfiNewArchiveReader (FD_t fd, rpmfiles files, int itype) |
Get new file iterator for looping over the archive content. More... | |
int | rpmfiArchiveClose (rpmfi fi) |
Close payload archive. More... | |
rpm_loff_t | rpmfiArchiveTell (rpmfi fi) |
Return current position in payload archive. More... | |
size_t | rpmfiArchiveWrite (rpmfi fi, const void *buf, size_t size) |
Write content into current file in archive. More... | |
int | rpmfiArchiveWriteFile (rpmfi fi, FD_t fd) |
Write content from given file into current file in archive. More... | |
size_t | rpmfiArchiveRead (rpmfi fi, void *buf, size_t size) |
Read content from current file in archive. More... | |
int | rpmfiArchiveHasContent (rpmfi fi) |
Has current file content stored in the archive. More... | |
int | rpmfiArchiveReadToFile (rpmfi fi, FD_t fd, int nodigest) |
Write content from current file in archive to a file. More... | |
#define RPMERR_CHECK_ERRNO -32768 |
Definition at line 8 of file rpmarchive.h.
enum rpmfilesErrorCodes |
Error codes for archive and file handling.
Definition at line 13 of file rpmarchive.h.
int rpmfiArchiveClose | ( | rpmfi | fi | ) |
Close payload archive.
fi | file info |
int rpmfiArchiveHasContent | ( | rpmfi | fi | ) |
Has current file content stored in the archive.
fi | file info @ return 1 for regular files but 0 for hardlinks without content |
Referenced by process_package().
size_t rpmfiArchiveRead | ( | rpmfi | fi, |
void * | buf, | ||
size_t | size | ||
) |
Read content from current file in archive.
fi | file info |
buf | pointer to buffer size number of bytes to read |
Referenced by write_file_content().
Write content from current file in archive to a file.
fi | file info |
fd | file descriptor of file to write to |
nodigest | omit checksum check if 1 |
rpm_loff_t rpmfiArchiveTell | ( | rpmfi | fi | ) |
Return current position in payload archive.
fi | file info |
size_t rpmfiArchiveWrite | ( | rpmfi | fi, |
const void * | buf, | ||
size_t | size | ||
) |
Write content into current file in archive.
fi | file info |
buf | pointer to content size number of bytes to write |
Write content from given file into current file in archive.
fi | file info |
fd | file descriptor of file to read |
char* rpmfileStrerror | ( | int | rc | ) |
Return formatted error message on payload handling failure.
rc | error code |
Get new file iterator for looping over the archive content.
Returned rpmfi visites files in the order they are read from the payload. Content of the regular files can be retrieved with rpmfiArchiveRead() or rpmfiArchiveReadToFile() when they are visited with rpmfiNext(). rpmfiSetFX() is not supported for this type of iterator.
fd | file |
fi | file info |
itype | how to handle hard links. See rpmFileIter. |
Referenced by process_package().
Get new file iterator for writing the archive content.
The returned rpmfi will only visit the files needing some content. You need to provide the content using rpmfiArchiveWrite() or rpmfiArchiveWriteFile(). Make sure to close the rpmfi with rpmfiArchiveClose() to get the trailer written. rpmfiSetFX() is not supported for this type of iterator.
fd | file |
fi | file info |