2 * Sherlock Library -- Fast Buffered I/O
4 * (c) 1997--2002 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
10 #ifndef _SHERLOCK_FASTBUF_H
11 #define _SHERLOCK_FASTBUF_H
20 #include "lib/unaligned.h"
23 * Generic buffered I/O. You supply hooks to be called for low-level operations
24 * (swapping of buffers, seeking and closing), we do the rest.
26 * Buffer layout when reading:
28 * +----------------+---------------------------+
29 * | read data | free space |
30 * +----------------+---------------------------+
32 * buffer bptr bstop bufend
34 * After the last character is read, bptr == bstop and buffer refill
35 * is deferred to the next read attempt. This gives us an easy way
36 * how to implement bungetc().
40 * +--------+--------------+--------------------+
41 * | unused | written data | free space |
42 * +--------+--------------+--------------------+
44 * buffer bstop bptr bufend
48 * - You can mix reads and writes on the same stream, but you must
49 * call bflush() in between and remember that the file position
50 * points after the flushed buffer which is not necessarily the same
51 * as after the data you've read.
52 * - The spout/refill hooks can change not only bptr and bstop, but also
53 * the location of the buffer; fb-mem.c takes advantage of it.
57 byte is_fastbuf[0]; /* Dummy field for checking of type casts */
58 byte *bptr, *bstop; /* Access pointers */
59 byte *buffer, *bufend; /* Start and end of the buffer */
60 byte *name; /* File name for error messages */
61 sh_off_t pos; /* Position of bstop in the file */
62 int (*refill)(struct fastbuf *); /* Get a buffer with new data */
63 void (*spout)(struct fastbuf *); /* Write buffer data to the file */
64 void (*seek)(struct fastbuf *, sh_off_t, int); /* Slow path for bseek(), buffer already flushed */
65 void (*close)(struct fastbuf *); /* Close the stream */
66 int (*config)(struct fastbuf *, uns, int); /* Configure the stream */
69 /* FastIO on standard files (specify buffer size 0 to enable mmaping) */
71 struct fastbuf *bopen(byte *name, uns mode, uns buffer);
72 struct fastbuf *bopen_tmp(uns buffer);
73 struct fastbuf *bfdopen(int fd, uns buffer);
74 struct fastbuf *bfdopen_shared(int fd, uns buffer);
76 /* FastIO on in-memory streams */
78 struct fastbuf *fbmem_create(unsigned blocksize); /* Create stream and return its writing fastbuf */
79 struct fastbuf *fbmem_clone_read(struct fastbuf *); /* Create reading fastbuf */
81 /* FastIO on memory mapped files */
83 struct fastbuf *bopen_mm(byte *name, uns mode);
85 /* FastI on file descriptors with limit */
87 struct fastbuf *bopen_limited_fd(int fd, uns bufsize, uns limit);
89 /* FastIO on static buffers */
91 void fbbuf_init_read(struct fastbuf *f, byte *buffer, uns size);
92 void fbbuf_init_write(struct fastbuf *f, byte *buffer, uns size);
94 fbbuf_count_written(struct fastbuf *f)
96 return f->bptr - f->bstop;
99 /* Configuring stream parameters */
101 int bconfig(struct fastbuf *f, uns type, int data);
103 #define BCONFIG_IS_TEMP_FILE 0
105 /* Universal functions working on all fastbuf's */
107 void bclose(struct fastbuf *f);
108 void bflush(struct fastbuf *f);
109 void bseek(struct fastbuf *f, sh_off_t pos, int whence);
110 void bsetpos(struct fastbuf *f, sh_off_t pos);
112 static inline sh_off_t btell(struct fastbuf *f)
114 return f->pos + (f->bptr - f->bstop);
117 int bgetc_slow(struct fastbuf *f);
118 static inline int bgetc(struct fastbuf *f)
120 return (f->bptr < f->bstop) ? (int) *f->bptr++ : bgetc_slow(f);
123 int bpeekc_slow(struct fastbuf *f);
124 static inline int bpeekc(struct fastbuf *f)
126 return (f->bptr < f->bstop) ? (int) *f->bptr : bpeekc_slow(f);
129 static inline void bungetc(struct fastbuf *f)
134 void bputc_slow(struct fastbuf *f, uns c);
135 static inline void bputc(struct fastbuf *f, uns c)
137 if (f->bptr < f->bufend)
143 int bgetw_slow(struct fastbuf *f);
144 static inline int bgetw(struct fastbuf *f)
147 if (f->bptr + 2 <= f->bstop)
149 w = GET_U16(f->bptr);
154 return bgetw_slow(f);
157 u32 bgetl_slow(struct fastbuf *f);
158 static inline u32 bgetl(struct fastbuf *f)
161 if (f->bptr + 4 <= f->bstop)
163 l = GET_U32(f->bptr);
168 return bgetl_slow(f);
171 u64 bgetq_slow(struct fastbuf *f);
172 static inline u64 bgetq(struct fastbuf *f)
175 if (f->bptr + 8 <= f->bstop)
177 l = GET_U64(f->bptr);
182 return bgetq_slow(f);
185 u64 bget5_slow(struct fastbuf *f);
186 static inline u64 bget5(struct fastbuf *f)
189 if (f->bptr + 5 <= f->bstop)
191 l = GET_U40(f->bptr);
196 return bget5_slow(f);
199 void bputw_slow(struct fastbuf *f, uns w);
200 static inline void bputw(struct fastbuf *f, uns w)
202 if (f->bptr + 2 <= f->bufend)
211 void bputl_slow(struct fastbuf *f, u32 l);
212 static inline void bputl(struct fastbuf *f, u32 l)
214 if (f->bptr + 4 <= f->bufend)
223 void bputq_slow(struct fastbuf *f, u64 l);
224 static inline void bputq(struct fastbuf *f, u64 l)
226 if (f->bptr + 8 <= f->bufend)
235 void bput5_slow(struct fastbuf *f, u64 l);
236 static inline void bput5(struct fastbuf *f, u64 l)
238 if (f->bptr + 5 <= f->bufend)
247 uns bread_slow(struct fastbuf *f, void *b, uns l, uns check);
248 static inline uns bread(struct fastbuf *f, void *b, uns l)
250 if (f->bptr + l <= f->bstop)
252 memcpy(b, f->bptr, l);
257 return bread_slow(f, b, l, 0);
260 static inline uns breadb(struct fastbuf *f, void *b, uns l)
262 if (f->bptr + l <= f->bstop)
264 memcpy(b, f->bptr, l);
269 return bread_slow(f, b, l, 1);
272 void bwrite_slow(struct fastbuf *f, void *b, uns l);
273 static inline void bwrite(struct fastbuf *f, void *b, uns l)
275 if (f->bptr + l <= f->bufend)
277 memcpy(f->bptr, b, l);
281 bwrite_slow(f, b, l);
284 byte *bgets(struct fastbuf *f, byte *b, uns l); /* Non-std */
285 int bgets_nodie(struct fastbuf *f, byte *b, uns l);
286 byte *bgets0(struct fastbuf *f, byte *b, uns l);
289 bputs(struct fastbuf *f, byte *b)
291 bwrite(f, b, strlen(b));
295 bputs0(struct fastbuf *f, byte *b)
297 bwrite(f, b, strlen(b)+1);
301 bputsn(struct fastbuf *f, byte *b)
307 void bbcopy_slow(struct fastbuf *f, struct fastbuf *t, uns l);
309 bbcopy(struct fastbuf *f, struct fastbuf *t, uns l)
311 if (f->bptr + l <= f->bstop &&
312 t->bptr + l <= t->bufend)
314 memcpy(t->bptr, f->bptr, l);
319 bbcopy_slow(f, t, l);
322 /* I/O on addr_int_t */
324 #ifdef CPU_64BIT_POINTERS
325 #define bputa(x,p) bputq(x,p)
326 #define bgeta(x) bgetq(x)
328 #define bputa(x,p) bputl(x,p)
329 #define bgeta(x) bgetl(x)
332 /* Direct I/O on buffers */
335 bdirect_read_prepare(struct fastbuf *f, byte **buf)
337 if (f->bptr == f->bstop && !f->refill(f))
340 return f->bstop - f->bptr;
344 bdirect_read_commit(struct fastbuf *f, byte *pos)
350 bdirect_write_prepare(struct fastbuf *f, byte **buf)
352 if (f->bptr == f->bufend)
355 return f->bufend - f->bptr;
359 bdirect_write_commit(struct fastbuf *f, byte *pos)
364 /* Formatted output */
366 int bprintf(struct fastbuf *b, byte *msg, ...);
367 int vbprintf(struct fastbuf *b, byte *msg, va_list args);