2 * UCW Library -- Fast Buffered I/O
4 * (c) 1997--2004 Martin Mares <mj@ucw.cz>
5 * (c) 2004 Robert Spalek <robert@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
11 #ifndef _UCW_FASTBUF_H
12 #define _UCW_FASTBUF_H
21 #include "lib/unaligned.h"
24 * Generic buffered I/O. You supply hooks to be called for low-level operations
25 * (swapping of buffers, seeking and closing), we do the rest.
27 * Buffer layout when reading:
29 * +----------------+---------------------------+
30 * | read data | free space |
31 * +----------------+---------------------------+
33 * buffer bptr bstop bufend
35 * After the last character is read, bptr == bstop and buffer refill
36 * is deferred to the next read attempt. This gives us an easy way
37 * how to implement bungetc().
41 * +--------+--------------+--------------------+
42 * | unused | written data | free space |
43 * +--------+--------------+--------------------+
45 * buffer bstop bptr bufend
49 * - You can mix reads and writes on the same stream, but you must
50 * call bflush() in between and remember that the file position
51 * points after the flushed buffer which is not necessarily the same
52 * as after the data you've read.
53 * - The spout/refill hooks can change not only bptr and bstop, but also
54 * the location of the buffer; fb-mem.c takes advantage of it.
55 * - In some cases, the user of the bdirect interface can be allowed to modify
56 * the data in the buffer to avoid unnecessary copying. If the back-end
57 * allows such modifications, it can set can_overwrite_buffer accordingly:
58 * * 0 if no modification is allowed,
59 * * 1 if the user can modify the buffer on the condition that
60 * the modifications will be undone before calling the next
62 * * 2 if the user is allowed to overwrite the data in the buffer
63 * if bdirect_read_commit_modified() is called afterwards.
64 * In this case, the back-end must be prepared for trimming
65 * of the buffer which is done by the commit function.
69 byte is_fastbuf[0]; /* Dummy field for checking of type casts */
70 byte *bptr, *bstop; /* Access pointers */
71 byte *buffer, *bufend; /* Start and end of the buffer */
72 byte *name; /* File name for error messages */
73 sh_off_t pos; /* Position of bstop in the file */
74 int (*refill)(struct fastbuf *); /* Get a buffer with new data */
75 void (*spout)(struct fastbuf *); /* Write buffer data to the file */
76 void (*seek)(struct fastbuf *, sh_off_t, int); /* Slow path for bseek(), buffer already flushed */
77 void (*close)(struct fastbuf *); /* Close the stream */
78 int (*config)(struct fastbuf *, uns, int); /* Configure the stream */
79 int can_overwrite_buffer; /* Can the buffer be altered? (see discussion above) 0=never, 1=temporarily, 2=permanently */
82 /* FastIO on standard files (specify buffer size 0 to enable mmaping) */
84 struct fastbuf *bopen(byte *name, uns mode, uns buflen);
85 struct fastbuf *bopen_try(byte *name, uns mode, uns buflen);
86 struct fastbuf *bopen_tmp(uns buflen);
87 struct fastbuf *bfdopen(int fd, uns buflen);
88 struct fastbuf *bfdopen_shared(int fd, uns buflen);
89 void bfilesync(struct fastbuf *b);
91 /* FastIO on in-memory streams */
93 struct fastbuf *fbmem_create(unsigned blocksize); /* Create stream and return its writing fastbuf */
94 struct fastbuf *fbmem_clone_read(struct fastbuf *); /* Create reading fastbuf */
96 /* FastIO on memory mapped files */
98 struct fastbuf *bopen_mm(byte *name, uns mode);
100 /* FastI on file descriptors with limit */
102 struct fastbuf *bopen_limited_fd(int fd, uns bufsize, uns limit);
104 /* FastIO on static buffers */
106 void fbbuf_init_read(struct fastbuf *f, byte *buffer, uns size, uns can_overwrite);
107 void fbbuf_init_write(struct fastbuf *f, byte *buffer, uns size);
109 fbbuf_count_written(struct fastbuf *f)
111 return f->bptr - f->bstop;
114 /* FastIO on recyclable growing buffers */
116 struct fastbuf *fbgrow_create(unsigned basic_size);
117 void fbgrow_reset(struct fastbuf *b); /* Reset stream and prepare for writing */
118 void fbgrow_rewind(struct fastbuf *b); /* Prepare for reading */
120 /* FastO with atomic writes for multi-threaded programs */
124 struct fb_atomic_file *af;
125 byte *expected_max_bptr;
128 #define FB_ATOMIC(f) ((struct fb_atomic *)(f)->is_fastbuf)
130 struct fastbuf *fbatomic_open(byte *name, struct fastbuf *master, uns bufsize, int record_len);
131 void fbatomic_internal_write(struct fastbuf *b);
134 fbatomic_commit(struct fastbuf *b)
136 if (b->bptr >= ((struct fb_atomic *)b)->expected_max_bptr)
137 fbatomic_internal_write(b);
140 /* Configuring stream parameters */
142 int bconfig(struct fastbuf *f, uns type, int data);
144 #define BCONFIG_IS_TEMP_FILE 0
146 /* Universal functions working on all fastbuf's */
148 void bclose(struct fastbuf *f);
149 void bflush(struct fastbuf *f);
150 void bseek(struct fastbuf *f, sh_off_t pos, int whence);
151 void bsetpos(struct fastbuf *f, sh_off_t pos);
152 void brewind(struct fastbuf *f);
153 sh_off_t bfilesize(struct fastbuf *f);
155 static inline sh_off_t btell(struct fastbuf *f)
157 return f->pos + (f->bptr - f->bstop);
160 int bgetc_slow(struct fastbuf *f);
161 static inline int bgetc(struct fastbuf *f)
163 return (f->bptr < f->bstop) ? (int) *f->bptr++ : bgetc_slow(f);
166 int bpeekc_slow(struct fastbuf *f);
167 static inline int bpeekc(struct fastbuf *f)
169 return (f->bptr < f->bstop) ? (int) *f->bptr : bpeekc_slow(f);
172 static inline void bungetc(struct fastbuf *f)
177 void bputc_slow(struct fastbuf *f, uns c);
178 static inline void bputc(struct fastbuf *f, uns c)
180 if (f->bptr < f->bufend)
187 bavailr(struct fastbuf *f)
189 return f->bstop - f->bptr;
193 bavailw(struct fastbuf *f)
195 return f->bufend - f->bptr;
198 int bgetw_slow(struct fastbuf *f);
199 static inline int bgetw(struct fastbuf *f)
204 w = GET_U16(f->bptr);
209 return bgetw_slow(f);
212 u32 bgetl_slow(struct fastbuf *f);
213 static inline u32 bgetl(struct fastbuf *f)
218 l = GET_U32(f->bptr);
223 return bgetl_slow(f);
226 u64 bgetq_slow(struct fastbuf *f);
227 static inline u64 bgetq(struct fastbuf *f)
232 l = GET_U64(f->bptr);
237 return bgetq_slow(f);
240 u64 bget5_slow(struct fastbuf *f);
241 static inline u64 bget5(struct fastbuf *f)
246 l = GET_U40(f->bptr);
251 return bget5_slow(f);
254 void bputw_slow(struct fastbuf *f, uns w);
255 static inline void bputw(struct fastbuf *f, uns w)
266 void bputl_slow(struct fastbuf *f, u32 l);
267 static inline void bputl(struct fastbuf *f, u32 l)
278 void bputq_slow(struct fastbuf *f, u64 l);
279 static inline void bputq(struct fastbuf *f, u64 l)
290 void bput5_slow(struct fastbuf *f, u64 l);
291 static inline void bput5(struct fastbuf *f, u64 l)
302 uns bread_slow(struct fastbuf *f, void *b, uns l, uns check);
303 static inline uns bread(struct fastbuf *f, void *b, uns l)
307 memcpy(b, f->bptr, l);
312 return bread_slow(f, b, l, 0);
315 static inline uns breadb(struct fastbuf *f, void *b, uns l)
319 memcpy(b, f->bptr, l);
324 return bread_slow(f, b, l, 1);
327 void bwrite_slow(struct fastbuf *f, void *b, uns l);
328 static inline void bwrite(struct fastbuf *f, void *b, uns l)
332 memcpy(f->bptr, b, l);
336 bwrite_slow(f, b, l);
339 byte *bgets(struct fastbuf *f, byte *b, uns l); /* Non-std */
340 int bgets_nodie(struct fastbuf *f, byte *b, uns l);
341 byte *bgets0(struct fastbuf *f, byte *b, uns l);
345 uns bgets_bb(struct fastbuf *f, struct bb_t *b, uns limit);
346 byte *bgets_mp(struct fastbuf *f, struct mempool *mp);
348 struct bgets_stk_struct {
350 byte *old_buf, *cur_buf, *src;
351 uns old_len, cur_len, src_len;
353 void bgets_stk_init(struct bgets_stk_struct *s);
354 void bgets_stk_step(struct bgets_stk_struct *s);
355 #define bgets_stk(fb) ({ struct bgets_stk_struct _s; _s.f = (fb); for (bgets_stk_init(&_s); _s.cur_len; _s.cur_buf = alloca(_s.cur_len), bgets_stk_step(&_s)); _s.cur_buf; })
358 bputs(struct fastbuf *f, byte *b)
360 bwrite(f, b, strlen(b));
364 bputs0(struct fastbuf *f, byte *b)
366 bwrite(f, b, strlen(b)+1);
370 bputsn(struct fastbuf *f, byte *b)
376 void bbcopy_slow(struct fastbuf *f, struct fastbuf *t, uns l);
378 bbcopy(struct fastbuf *f, struct fastbuf *t, uns l)
380 if (bavailr(f) >= l && bavailw(t) >= l)
382 memcpy(t->bptr, f->bptr, l);
387 bbcopy_slow(f, t, l);
390 int bskip_slow(struct fastbuf *f, uns len);
391 static inline int bskip(struct fastbuf *f, uns len)
393 if (bavailr(f) >= len)
399 return bskip_slow(f, len);
402 /* I/O on addr_int_t */
404 #ifdef CPU_64BIT_POINTERS
405 #define bputa(x,p) bputq(x,p)
406 #define bgeta(x) bgetq(x)
408 #define bputa(x,p) bputl(x,p)
409 #define bgeta(x) bgetl(x)
412 /* Direct I/O on buffers */
415 bdirect_read_prepare(struct fastbuf *f, byte **buf)
417 if (f->bptr == f->bstop && !f->refill(f))
419 *buf = NULL; // This is not needed, but it helps to get rid of spurious warnings
427 bdirect_read_commit(struct fastbuf *f, byte *pos)
433 bdirect_read_commit_modified(struct fastbuf *f, byte *pos)
436 f->buffer = pos; /* Avoid seeking backwards in the buffer */
440 bdirect_write_prepare(struct fastbuf *f, byte **buf)
442 if (f->bptr == f->bufend)
449 bdirect_write_commit(struct fastbuf *f, byte *pos)
454 /* Formatted output */
456 int bprintf(struct fastbuf *b, char *msg, ...) FORMAT_CHECK(printf,2,3);
457 int vbprintf(struct fastbuf *b, char *msg, va_list args);