Commit | Line | Data |
---|---|---|
02d1d628 AMH |
1 | #ifndef _IOLAYER_H_ |
2 | #define _IOLAYER_H_ | |
3 | ||
4 | ||
5 | /* How the IO layer works: | |
6 | * | |
6d5c85a2 TC |
7 | * Start by getting an io_glue object by calling the appropriate |
8 | * io_new...() function. After that data can be read via the | |
9 | * io_glue->readcb() method. | |
02d1d628 AMH |
10 | * |
11 | */ | |
12 | ||
13 | ||
0778adbf | 14 | #include "iolayert.h" |
02d1d628 AMH |
15 | |
16 | /* #define BBSIZ 1096 */ | |
3e27d469 | 17 | #define BBSIZ 16384 |
02d1d628 AMH |
18 | #define IO_FAKE_SEEK 1<<0L |
19 | #define IO_TEMP_SEEK 1<<1L | |
20 | ||
21 | ||
02d1d628 AMH |
22 | void io_glue_gettypes (io_glue *ig, int reqmeth); |
23 | ||
02d1d628 | 24 | /* XS functions */ |
d03fd5a4 TC |
25 | io_glue *io_new_fd(int fd); |
26 | io_glue *io_new_bufchain(void); | |
27 | io_glue *io_new_buffer(const char *data, size_t len, i_io_closebufp_t closecb, void *closedata); | |
28 | io_glue *io_new_cb(void *p, i_io_readl_t readcb, i_io_writel_t writecb, i_io_seekl_t seekcb, i_io_closel_t closecb, i_io_destroyl_t destroycb); | |
02d1d628 | 29 | size_t io_slurp(io_glue *ig, unsigned char **c); |
d16420e9 | 30 | void io_glue_destroy(io_glue *ig); |
02d1d628 | 31 | |
6d5c85a2 TC |
32 | void i_io_dump(io_glue *ig, int flags); |
33 | ||
34 | /* Buffered I/O */ | |
35 | extern int i_io_getc_imp(io_glue *ig); | |
36 | extern int i_io_peekc_imp(io_glue *ig); | |
37 | extern ssize_t i_io_peekn(io_glue *ig, void *buf, size_t size); | |
38 | extern int i_io_putc_imp(io_glue *ig, int c); | |
39 | extern ssize_t i_io_read(io_glue *ig, void *buf, size_t size); | |
40 | extern ssize_t i_io_write(io_glue *ig, const void *buf, size_t size); | |
41 | extern off_t i_io_seek(io_glue *ig, off_t offset, int whence); | |
42 | extern int i_io_flush(io_glue *ig); | |
43 | extern int i_io_close(io_glue *ig); | |
44 | extern int i_io_set_buffered(io_glue *ig, int buffered); | |
45 | extern ssize_t i_io_gets(io_glue *ig, char *, size_t, int); | |
46 | ||
02d1d628 | 47 | #endif /* _IOLAYER_H_ */ |