diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-15 20:40:01 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-15 20:44:41 +0200 |
commit | 428aa363dd2b44756a5b16aa17e8c2030de801a0 (patch) | |
tree | 8bc507fdcc795a5c75ef7a148e66e940d4df91b9 /include | |
parent | 129e1758a5e2cf851f042e139fdd808a9be9ce94 (diff) |
Move condensed-sparse-file handling to libsquashfs
Add another helper function for getting a blocks from a condensed sparse
file, then rewrite the data writer to use that instead, using an
sqfs_file_t pointer instead of direct file i/o.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r-- | include/data_writer.h | 5 | ||||
-rw-r--r-- | include/sqfs/io.h | 29 |
2 files changed, 32 insertions, 2 deletions
diff --git a/include/data_writer.h b/include/data_writer.h index c9b416c..4d5fa12 100644 --- a/include/data_writer.h +++ b/include/data_writer.h @@ -97,8 +97,9 @@ int write_data_from_file(data_writer_t *data, file_info_t *fi, Returns 0 on success, prints errors to stderr. */ -int write_data_from_fd_condensed(data_writer_t *data, file_info_t *fi, - int infd, sqfs_sparse_map_t *map, int flags); +int write_data_from_file_condensed(data_writer_t *data, sqfs_file_t *file, + file_info_t *fi, + const sqfs_sparse_map_t *map, int flags); data_writer_stats_t *data_writer_get_stats(data_writer_t *data); diff --git a/include/sqfs/io.h b/include/sqfs/io.h index cf6f1fa..bbc3da9 100644 --- a/include/sqfs/io.h +++ b/include/sqfs/io.h @@ -189,6 +189,35 @@ SQFS_API int sqfs_file_create_block(sqfs_file_t *file, uint64_t offset, size_t size, void *user, uint32_t flags, sqfs_block_t **out); +/** + * @brief Read a chunk from a condensed version of a sparse file and turn it + * into a block that can be fed to a block processor. + * + * @member sqfs_file_t + * + * This function works on condensed sparse files, i.e. a sparse file that had + * its holdes removed. The given mapping describes the original data region + * that are actually packed next to each other. The function emulates the + * orignal sparse file by zero-initializing the block data, then figuring + * out which regions overlap the block, working out their physical location and + * stitching the block together. + * + * @param file A pointer to a file implementation. + * @param offset A byte offset into the file. + * @param size The number of bytes to read, starting at the given offset. + * @param user A user pointer to set for the block. + * @param flags The flags to store in the newly created block. + * @param map Describes the data regions of the original sparse file. + * @param out Returns a pointer to a block on success. + * + * @return Zero on success, an @ref E_SQFS_ERROR identifier on failure. + */ +SQFS_API int sqfs_file_create_block_dense(sqfs_file_t *file, uint64_t offset, + size_t size, void *user, + uint32_t flags, + const sqfs_sparse_map_t *map, + sqfs_block_t **out); + #ifdef __cplusplus } #endif |