summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_extract.c
diff options
context:
space:
mode:
authorPaul Barker <paul@paulbarker.me.uk>2014-04-06 15:48:24 +0100
committerPaul Barker <paul@paulbarker.me.uk>2014-04-06 15:48:24 +0100
commit9025047842edc1e10508fae711e39d5b5a2a4db7 (patch)
tree3dd6b2f11d534be12ff91568f837e38b0ffc51a4 /libarchive/archive_read_extract.c
parent77b2efc28c87e45464dd459ca3e50d3cb52bf343 (diff)
downloadlibarchive-9025047842edc1e10508fae711e39d5b5a2a4db7.tar.gz
Split archive_read_extract2 from archive_read_extract
The function archive_read_extract requires a call to archive_write_disk_set_standard_lookup but the functions archive_read_extract2 and archive_read_extract_set_progress_callback do not. Therefore, the latter pair of functions, the internal function __archive_read_get_extract and the static function copy_data are moved out of archive_read_extract.c into the new file archive_read_extract2.c. This ensures that when statically linking, the standard user and group lookup functions will not be linked into a program unless they are really needed. Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Diffstat (limited to 'libarchive/archive_read_extract.c')
-rw-r--r--libarchive/archive_read_extract.c104
1 files changed, 0 insertions, 104 deletions
diff --git a/libarchive/archive_read_extract.c b/libarchive/archive_read_extract.c
index 6558b683..ce76a6ca 100644
--- a/libarchive/archive_read_extract.c
+++ b/libarchive/archive_read_extract.c
@@ -26,44 +26,16 @@
#include "archive_platform.h"
__FBSDID("$FreeBSD: src/lib/libarchive/archive_read_extract.c,v 1.61 2008/05/26 17:00:22 kientzle Exp $");
-#ifdef HAVE_SYS_TYPES_H
-#include <sys/types.h>
-#endif
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-#ifdef HAVE_STRING_H
-#include <string.h>
-#endif
#include "archive.h"
#include "archive_entry.h"
#include "archive_private.h"
#include "archive_read_private.h"
-#include "archive_write_disk_private.h"
static int archive_read_extract_cleanup(struct archive_read *);
-static int copy_data(struct archive *ar, struct archive *aw);
-
-/* Retrieve an extract object without initialising the associated
- * archive_write_disk object.
- */
-struct archive_read_extract *
-__archive_read_get_extract(struct archive_read *a)
-{
- if (a->extract == NULL) {
- a->extract = (struct archive_read_extract *)malloc(sizeof(*a->extract));
- if (a->extract == NULL) {
- archive_set_error(&a->archive, ENOMEM, "Can't extract");
- return (NULL);
- }
- memset(a->extract, 0, sizeof(*a->extract));
- }
- return (a->extract);
-}
int
archive_read_extract(struct archive *_a, struct archive_entry *entry, int flags)
@@ -90,82 +62,6 @@ archive_read_extract(struct archive *_a, struct archive_entry *entry, int flags)
return (archive_read_extract2(&a->archive, entry, extract->ad));
}
-int
-archive_read_extract2(struct archive *_a, struct archive_entry *entry,
- struct archive *ad)
-{
- struct archive_read *a = (struct archive_read *)_a;
- int r, r2;
-
- /* Set up for this particular entry. */
- if (a->skip_file_set)
- archive_write_disk_set_skip_file(ad,
- a->skip_file_dev, a->skip_file_ino);
- r = archive_write_header(ad, entry);
- if (r < ARCHIVE_WARN)
- r = ARCHIVE_WARN;
- if (r != ARCHIVE_OK)
- /* If _write_header failed, copy the error. */
- archive_copy_error(&a->archive, ad);
- else if (!archive_entry_size_is_set(entry) || archive_entry_size(entry) > 0)
- /* Otherwise, pour data into the entry. */
- r = copy_data(_a, ad);
- r2 = archive_write_finish_entry(ad);
- if (r2 < ARCHIVE_WARN)
- r2 = ARCHIVE_WARN;
- /* Use the first message. */
- if (r2 != ARCHIVE_OK && r == ARCHIVE_OK)
- archive_copy_error(&a->archive, ad);
- /* Use the worst error return. */
- if (r2 < r)
- r = r2;
- return (r);
-}
-
-void
-archive_read_extract_set_progress_callback(struct archive *_a,
- void (*progress_func)(void *), void *user_data)
-{
- struct archive_read *a = (struct archive_read *)_a;
- struct archive_read_extract *extract = __archive_read_get_extract(a);
- if (extract != NULL) {
- extract->extract_progress = progress_func;
- extract->extract_progress_user_data = user_data;
- }
-}
-
-static int
-copy_data(struct archive *ar, struct archive *aw)
-{
- int64_t offset;
- const void *buff;
- struct archive_read_extract *extract;
- size_t size;
- int r;
-
- extract = __archive_read_get_extract((struct archive_read *)ar);
- if (extract == NULL)
- return (ARCHIVE_FATAL);
- for (;;) {
- r = archive_read_data_block(ar, &buff, &size, &offset);
- if (r == ARCHIVE_EOF)
- return (ARCHIVE_OK);
- if (r != ARCHIVE_OK)
- return (r);
- r = (int)archive_write_data_block(aw, buff, size, offset);
- if (r < ARCHIVE_WARN)
- r = ARCHIVE_WARN;
- if (r != ARCHIVE_OK) {
- archive_set_error(ar, archive_errno(aw),
- "%s", archive_error_string(aw));
- return (r);
- }
- if (extract->extract_progress)
- (extract->extract_progress)
- (extract->extract_progress_user_data);
- }
-}
-
/*
* Cleanup function for archive_extract.
*/