]> git.draconx.ca Git - liblbx.git/blob - src/lbx.h
liblbx: Kill the LBX typedef.
[liblbx.git] / src / lbx.h
1 #ifndef LBX_H_
2 #define LBX_H_
3
4 #include <stdio.h>
5
6 struct lbx_file_ops {
7         size_t (*read)(void *buf, size_t size, void *handle);
8         int    (*seek)(void *handle, long offset, int whence);
9         long   (*tell)(void *handle);
10         int    (*eof) (void *handle);
11 };
12
13 struct lbx_pipe_state {
14         FILE *f;
15         long offset;
16 };
17
18 /* Default I/O operations for ordinary files. */
19 extern const struct lbx_file_ops lbx_default_fops;
20
21 /* I/O operations for un-seekable files (e.g. pipes). */
22 extern const struct lbx_file_ops lbx_pipe_fops;
23
24 /* I/O operations for LBX archive members. */
25 extern const struct lbx_file_ops lbx_arch_fops;
26
27 /* Opaque */
28 typedef struct lbx_file_state LBXfile;
29
30 struct lbx {
31         unsigned nfiles;
32 };
33
34 struct lbx_statbuf {
35         const char *name;
36         size_t size;
37 };
38
39 /* Archive operations */
40 struct lbx *lbx_open(void *handle, const struct lbx_file_ops *fops,
41                      int (*destructor)(void *handle), const char *name);
42 struct lbx *lbx_fopen(const char *);
43 struct lbx *lbx_mopen(void *, size_t, const char *);
44 int lbx_close(struct lbx *);
45
46 /* File operations */
47 int      lbx_file_stat(struct lbx *lbx, unsigned fileno, struct lbx_statbuf *out);
48 LBXfile *lbx_file_open(struct lbx *lbx, unsigned fileno);
49 size_t   lbx_file_read(LBXfile *f, void *buf, size_t n);
50 int      lbx_file_seek(LBXfile *f, long offset, int whence);
51 long     lbx_file_tell(LBXfile *f);
52 int      lbx_file_eof(LBXfile *f);
53 void     lbx_file_close(LBXfile *f);
54
55 #endif