X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/b42e3c4eadf05be2506e1a1f8deb2cf24064c18b..2c0de0824e7a962fe0bff05972629781cec3fd68:/src/lbx.h diff --git a/src/lbx.h b/src/lbx.h index 4232b9f..0f09c06 100644 --- a/src/lbx.h +++ b/src/lbx.h @@ -1,10 +1,56 @@ #ifndef LBX_H_ #define LBX_H_ -typedef struct lbx_state LBX; +#include -LBX *lbx_fopen(FILE *); -LBX *lbx_open(const char *); -void lbx_close(LBX *); +struct lbx_file_ops { + size_t (*read)(void *buf, size_t size, void *handle); + int (*seek)(void *handle, long offset, int whence); + long (*tell)(void *handle); + int (*eof) (void *handle); +}; + +struct lbx_pipe_state { + FILE *f; + long offset; +}; + +/* Default I/O operations for ordinary files. */ +extern const struct lbx_file_ops lbx_default_fops; + +/* I/O operations for un-seekable files (e.g. pipes). */ +extern const struct lbx_file_ops lbx_pipe_fops; + +/* I/O operations for LBX archive members. */ +extern const struct lbx_file_ops lbx_arch_fops; + +/* Opaque */ +typedef struct lbx LBX; +typedef struct lbx_file_state LBXfile; + +struct lbx { + unsigned nfiles; +}; + +struct lbx_statbuf { + const char *name; + size_t size; +}; + +/* Archive operations */ +LBX *lbx_open(void *handle, const struct lbx_file_ops *fops, + int (*destructor)(void *handle), const char *name); +LBX *lbx_fopen(const char *); +LBX *lbx_mopen(void *, size_t, const char *); +int lbx_close(LBX *); + +/* File operations */ +int lbx_file_stat(LBX *lbx, unsigned fileno, struct lbx_statbuf *out); +LBXfile *lbx_file_open(LBX *lbx, unsigned fileno); +size_t lbx_file_read(LBXfile *f, void *buf, size_t n); +int lbx_file_seek(LBXfile *f, long offset, int whence); +long lbx_file_tell(LBXfile *f); +int lbx_file_eof(LBXfile *f); +void lbx_file_close(LBXfile *f); #endif