From 3511b1fa7c6f71c579e161951e945904e552e1d9 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Wed, 25 Sep 2019 17:47:19 +0200 Subject: Remove condensed sparse file handling from libsquashfs This only exists for tar2sqfs. Move the sparse file map to libtar and add the ability to do this into the stind sqfs_file_t abstraction, so it acts like a normal file but internally stitches the data together from the sparse implementation. Signed-off-by: David Oberhollenzer --- include/tar.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'include/tar.h') diff --git a/include/tar.h b/include/tar.h index 38f6289..45457da 100644 --- a/include/tar.h +++ b/include/tar.h @@ -8,13 +8,17 @@ #define TAR_H #include "config.h" +#include "util.h" #include #include #include -#include "sqfs/io.h" -#include "util.h" +typedef struct sparse_map_t { + struct sparse_map_t *next; + uint64_t offset; + uint64_t count; +} sparse_map_t; typedef struct { char name[100]; @@ -75,7 +79,7 @@ typedef struct { struct stat sb; char *name; char *link_target; - sqfs_sparse_map_t *sparse; + sparse_map_t *sparse; uint64_t actual_size; uint64_t record_size; bool unknown_record; -- cgit v1.2.3