aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-12 21:21:40 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-06-15 13:38:25 +0200
commitba99ef34e7b073c03519ef74f017091de6c9bee8 (patch)
tree8c134f72990200550ac96e46bd47d4cc0ba85810 /include
parente811851deba9c45f3d9b3c5b4ad5eaa7945382d5 (diff)
Move sqfs_istream_t & sqfs_ostream_t into libsquashfs
For now, only the interfaces and helper functions are moved, the concrete implementations remain in libio. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/common.h2
-rw-r--r--include/io/file.h1
-rw-r--r--include/io/istream.h102
-rw-r--r--include/io/ostream.h60
-rw-r--r--include/io/std.h1
-rw-r--r--include/io/xfrm.h1
-rw-r--r--include/sqfs/io.h154
-rw-r--r--include/sqfs/predef.h2
-rw-r--r--include/tar/tar.h2
9 files changed, 157 insertions, 168 deletions
diff --git a/include/common.h b/include/common.h
index c289458..d2e3f73 100644
--- a/include/common.h
+++ b/include/common.h
@@ -17,10 +17,10 @@
#include "sqfs/block.h"
#include "sqfs/xattr.h"
#include "sqfs/dir.h"
+#include "sqfs/io.h"
#include "simple_writer.h"
#include "compress_cli.h"
-#include "io/ostream.h"
#include "io/file.h"
#include "io/std.h"
#include "compat.h"
diff --git a/include/io/file.h b/include/io/file.h
index 1072b6a..fa0abc0 100644
--- a/include/io/file.h
+++ b/include/io/file.h
@@ -8,7 +8,6 @@
#define IO_FILE_H
#include "io/istream.h"
-#include "io/ostream.h"
#if defined(_WIN32) || defined(__WINDOWS__)
#include <handleapi.h>
diff --git a/include/io/istream.h b/include/io/istream.h
index f4ffcb2..f41be2e 100644
--- a/include/io/istream.h
+++ b/include/io/istream.h
@@ -8,66 +8,6 @@
#define IO_ISTREAM_H
#include "sqfs/predef.h"
-#include "io/ostream.h"
-
-typedef struct sqfs_istream_t sqfs_istream_t;
-
-/**
- * @interface sqfs_istream_t
- *
- * @extends sqfs_object_t
- *
- * @brief A sequential, read-only data stream.
- */
-struct sqfs_istream_t {
- sqfs_object_t base;
-
- /**
- * @brief Peek into the data buffered in an istream
- *
- * If the internal buffer is empty, the function tries to fetch more,
- * which can block. It returns a positive return code if there is no
- * more data to be read, a negative error code if reading failed. Since
- * this and other functions can alter the buffer pointer and contents,
- * do not store the pointers returned here across function calls.
- *
- * Higher level functions like @ref istream_read (providing a
- * Unix read() style API) are built on top of this primitive.
- *
- * @param strm A pointer to an sqfs_istream_t implementation.
- * @param out Returns a pointer into an internal buffer on success.
- * @param size Returns the number of bytes available in the buffer.
- * @param want A number of bytes that the reader would like to have.
- * If there is less than this available, the implementation
- * can choose to do a blocking precache.
- *
- * @return Zero on success, a negative error code on failure,
- * a postive number on EOF.
- */
- int (*get_buffered_data)(sqfs_istream_t *strm, const sqfs_u8 **out,
- size_t *size, size_t want);
-
- /**
- * @brief Mark a section of the internal buffer of an istream as used
- *
- * This marks the first `count` bytes of the internal buffer as used,
- * forcing get_buffered_data to return data afterwards and potentially
- * try to load more data.
- *
- * @param strm A pointer to an sqfs_istream_t implementation.
- * @param count The number of bytes used up.
- */
- void (*advance_buffer)(sqfs_istream_t *strm, size_t count);
-
- /**
- * @brief Get the underlying filename of an input stream.
- *
- * @param strm The input stream to get the filename from.
- *
- * @return A string holding the underlying filename.
- */
- const char *(*get_filename)(sqfs_istream_t *strm);
-};
enum {
ISTREAM_LINE_LTRIM = 0x01,
@@ -108,48 +48,6 @@ extern "C" {
SQFS_INTERNAL int istream_get_line(sqfs_istream_t *strm, char **out,
size_t *line_num, int flags);
-/**
- * @brief Read data from an input stream
- *
- * @memberof sqfs_istream_t
- *
- * @param strm A pointer to an input stream.
- * @param data A buffer to read into.
- * @param size The number of bytes to read into the buffer.
- *
- * @return The number of bytes actually read on success, -1 on failure,
- * 0 on end-of-file.
- */
-SQFS_INTERNAL sqfs_s32 istream_read(sqfs_istream_t *strm,
- void *data, size_t size);
-
-/**
- * @brief Skip over a number of bytes in an input stream.
- *
- * @memberof sqfs_istream_t
- *
- * @param strm A pointer to an input stream.
- * @param size The number of bytes to seek forward.
- *
- * @return Zero on success, -1 on failure.
- */
-SQFS_INTERNAL int istream_skip(sqfs_istream_t *strm, sqfs_u64 size);
-
-/**
- * @brief Dump data from an input stream to an output stream
- *
- * @memberof sqfs_istream_t
- *
- * @param in A pointer to an input stream to read from.
- * @param out A pointer to an output stream to append to.
- * @param size The number of bytes to copy over.
- *
- * @return The number of bytes copied on success, -1 on failure,
- * 0 on end-of-file.
- */
-SQFS_INTERNAL sqfs_s32 istream_splice(sqfs_istream_t *in, sqfs_ostream_t *out,
- sqfs_u32 size);
-
#ifdef __cplusplus
}
#endif
diff --git a/include/io/ostream.h b/include/io/ostream.h
deleted file mode 100644
index d1781d2..0000000
--- a/include/io/ostream.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/* SPDX-License-Identifier: GPL-3.0-or-later */
-/*
- * ostream.h
- *
- * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
- */
-#ifndef IO_OSTREAM_H
-#define IO_OSTREAM_H
-
-#include "sqfs/predef.h"
-
-typedef struct sqfs_ostream_t sqfs_ostream_t;
-
-/**
- * @interface sqfs_ostream_t
- *
- * @extends sqfs_object_t
- *
- * @brief An append-only data stream.
- */
-struct sqfs_ostream_t {
- sqfs_object_t base;
-
- /**
- * @brief Append a block of data to an output stream.
- *
- * @param strm A pointer to an output stream.
- * @param data A pointer to the data block to append. If NULL,
- * synthesize a chunk of zero bytes.
- * @param size The number of bytes to append.
- *
- * @return Zero on success, -1 on failure.
- */
- int (*append)(sqfs_ostream_t *strm, const void *data, size_t size);
-
- /**
- * @brief Process all pending, buffered data and flush it to disk.
- *
- * If the stream performs some kind of transformation (e.g. transparent
- * data compression), flushing caues the wrapped format to insert a
- * termination token. Only call this function when you are absolutely
- * DONE appending data, shortly before destroying the stream.
- *
- * @param strm A pointer to an output stream.
- *
- * @return Zero on success, -1 on failure.
- */
- int (*flush)(sqfs_ostream_t *strm);
-
- /**
- * @brief Get the underlying filename of a output stream.
- *
- * @param strm The output stream to get the filename from.
- *
- * @return A string holding the underlying filename.
- */
- const char *(*get_filename)(sqfs_ostream_t *strm);
-};
-
-#endif /* IO_OSTREAM_H */
diff --git a/include/io/std.h b/include/io/std.h
index 3a8bbf8..f622491 100644
--- a/include/io/std.h
+++ b/include/io/std.h
@@ -8,7 +8,6 @@
#define IO_STD_H
#include "io/istream.h"
-#include "io/ostream.h"
#ifdef __cplusplus
extern "C" {
diff --git a/include/io/xfrm.h b/include/io/xfrm.h
index c54bc9f..f0ff1ce 100644
--- a/include/io/xfrm.h
+++ b/include/io/xfrm.h
@@ -8,7 +8,6 @@
#define IO_XFRM_H
#include "io/istream.h"
-#include "io/ostream.h"
#include "xfrm/stream.h"
#ifdef __cplusplus
diff --git a/include/sqfs/io.h b/include/sqfs/io.h
index a1fb169..402b6de 100644
--- a/include/sqfs/io.h
+++ b/include/sqfs/io.h
@@ -25,7 +25,12 @@
/**
* @file io.h
*
- * @brief Contains the @ref sqfs_file_t interface for abstracting file I/O
+ * @brief Contains low-level interfaces for abstracting file I/O
+ *
+ * The @ref sqfs_file_t interface abstracts I/O on a random-acces sread/write
+ * file, @ref sqfs_ostream_t represents a buffered, sequential, append only
+ * data stream, @ref sqfs_istream_t represents a buffered, sequential, read only
+ * data stream.
*/
/**
@@ -151,6 +156,109 @@ struct sqfs_file_t {
int (*truncate)(sqfs_file_t *file, sqfs_u64 size);
};
+/**
+ * @interface sqfs_istream_t
+ *
+ * @extends sqfs_object_t
+ *
+ * @brief A sequential, read-only data stream.
+ */
+struct sqfs_istream_t {
+ sqfs_object_t base;
+
+ /**
+ * @brief Peek into the data buffered in an istream
+ *
+ * If the internal buffer is empty, the function tries to fetch more,
+ * which can block. It returns a positive return code if there is no
+ * more data to be read, a negative error code if reading failed. Since
+ * this and other functions can alter the buffer pointer and contents,
+ * do not store the pointers returned here across function calls.
+ *
+ * Higher level functions like @ref sqfs_istream_read (providing a
+ * Unix read() style API) are built on top of this primitive.
+ *
+ * @param strm A pointer to an sqfs_istream_t implementation.
+ * @param out Returns a pointer into an internal buffer on success.
+ * @param size Returns the number of bytes available in the buffer.
+ * @param want A number of bytes that the reader would like to have.
+ * If there is less than this available, the implementation
+ * can choose to do a blocking precache.
+ *
+ * @return Zero on success, a negative error code on failure,
+ * a postive number on EOF.
+ */
+ int (*get_buffered_data)(sqfs_istream_t *strm, const sqfs_u8 **out,
+ size_t *size, size_t want);
+
+ /**
+ * @brief Mark a section of the internal buffer of an istream as used
+ *
+ * This marks the first `count` bytes of the internal buffer as used,
+ * forcing get_buffered_data to return data afterwards and potentially
+ * try to load more data.
+ *
+ * @param strm A pointer to an sqfs_istream_t implementation.
+ * @param count The number of bytes used up.
+ */
+ void (*advance_buffer)(sqfs_istream_t *strm, size_t count);
+
+ /**
+ * @brief Get the underlying filename of an input stream.
+ *
+ * @param strm The input stream to get the filename from.
+ *
+ * @return A string holding the underlying filename.
+ */
+ const char *(*get_filename)(sqfs_istream_t *strm);
+};
+
+/**
+ * @interface sqfs_ostream_t
+ *
+ * @extends sqfs_object_t
+ *
+ * @brief An append-only data stream.
+ */
+struct sqfs_ostream_t {
+ sqfs_object_t base;
+
+ /**
+ * @brief Append a block of data to an output stream.
+ *
+ * @param strm A pointer to an output stream.
+ * @param data A pointer to the data block to append. If NULL,
+ * synthesize a chunk of zero bytes.
+ * @param size The number of bytes to append.
+ *
+ * @return Zero on success, -1 on failure.
+ */
+ int (*append)(sqfs_ostream_t *strm, const void *data, size_t size);
+
+ /**
+ * @brief Process all pending, buffered data and flush it to disk.
+ *
+ * If the stream performs some kind of transformation (e.g. transparent
+ * data compression), flushing caues the wrapped format to insert a
+ * termination token. Only call this function when you are absolutely
+ * DONE appending data, shortly before destroying the stream.
+ *
+ * @param strm A pointer to an output stream.
+ *
+ * @return Zero on success, -1 on failure.
+ */
+ int (*flush)(sqfs_ostream_t *strm);
+
+ /**
+ * @brief Get the underlying filename of a output stream.
+ *
+ * @param strm The output stream to get the filename from.
+ *
+ * @return A string holding the underlying filename.
+ */
+ const char *(*get_filename)(sqfs_ostream_t *strm);
+};
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -174,6 +282,50 @@ extern "C" {
*/
SQFS_API sqfs_file_t *sqfs_open_file(const char *filename, sqfs_u32 flags);
+/**
+ * @brief Read data from an input stream
+ *
+ * @memberof sqfs_istream_t
+ *
+ * This function implements a Unix-style read() function on top of
+ * an @ref sqfs_istream_t, taking care of buffer management internally.
+ *
+ * @param strm A pointer to an input stream.
+ * @param data A buffer to read into.
+ * @param size The number of bytes to read into the buffer.
+ *
+ * @return The number of bytes actually read on success, a
+ * negative @ref SQFS_ERROR code on failure, 0 on end-of-file.
+ */
+SQFS_API sqfs_s32 sqfs_istream_read(sqfs_istream_t *strm,
+ void *data, size_t size);
+
+/**
+ * @brief Skip over a number of bytes in an input stream.
+ *
+ * @memberof sqfs_istream_t
+ *
+ * @param strm A pointer to an input stream.
+ * @param size The number of bytes to seek forward.
+ *
+ * @return Zero on success, a negative @ref SQFS_ERROR code on failure.
+ */
+SQFS_API int sqfs_istream_skip(sqfs_istream_t *strm, sqfs_u64 size);
+
+/**
+ * @brief Dump data from an input stream to an output stream
+ *
+ * @memberof sqfs_istream_t
+ *
+ * @param in A pointer to an input stream to read from.
+ * @param out A pointer to an output stream to append to.
+ * @param size The number of bytes to copy over.
+ *
+ * @return Zero on success, a negative @ref SQFS_ERROR code on failure.
+ */
+SQFS_API sqfs_s32 sqfs_istream_splice(sqfs_istream_t *in, sqfs_ostream_t *out,
+ sqfs_u32 size);
+
#ifdef __cplusplus
}
#endif
diff --git a/include/sqfs/predef.h b/include/sqfs/predef.h
index b0baf92..aae95e4 100644
--- a/include/sqfs/predef.h
+++ b/include/sqfs/predef.h
@@ -96,6 +96,8 @@ typedef struct sqfs_block_processor_stats_t sqfs_block_processor_stats_t;
typedef struct sqfs_block_processor_desc_t sqfs_block_processor_desc_t;
typedef struct sqfs_readdir_state_t sqfs_readdir_state_t;
typedef struct sqfs_xattr_t sqfs_xattr_t;
+typedef struct sqfs_istream_t sqfs_istream_t;
+typedef struct sqfs_ostream_t sqfs_ostream_t;
typedef struct sqfs_fragment_t sqfs_fragment_t;
typedef struct sqfs_dir_header_t sqfs_dir_header_t;
diff --git a/include/tar/tar.h b/include/tar/tar.h
index 60c2a3d..1f1b1b4 100644
--- a/include/tar/tar.h
+++ b/include/tar/tar.h
@@ -10,8 +10,8 @@
#include "config.h"
#include "compat.h"
#include "io/istream.h"
-#include "io/ostream.h"
#include "io/dir_iterator.h"
+#include "sqfs/io.h"
#include <stdbool.h>
#include <stdint.h>