2 * UCW Library -- Fast Buffered I/O on Memory-Mapped Files
4 * (c) 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.
11 #include "lib/fastbuf.h"
20 static uns mmap_window_size = 16*CPU_PAGE_SIZE;
21 static uns mmap_extend_size = 4*CPU_PAGE_SIZE;
23 static struct cf_section fbmm_config = {
25 CF_UNS("WindowSize", &mmap_window_size),
26 CF_UNS("ExtendSize", &mmap_extend_size),
31 static void CONSTRUCTOR fbmm_init_config(void)
33 cf_declare_section("FBMMap", &fbmm_config, 0);
46 #define FB_MMAP(f) ((struct fb_mmap *)(f)->is_fastbuf)
49 bfmm_map_window(struct fastbuf *f)
51 struct fb_mmap *F = FB_MMAP(f);
52 sh_off_t pos0 = f->pos & ~(sh_off_t)(CPU_PAGE_SIZE-1);
53 int l = MIN((sh_off_t)mmap_window_size, F->file_extend - pos0);
54 uns ll = ALIGN_TO(l, CPU_PAGE_SIZE);
55 int prot = ((F->mode & O_ACCMODE) == O_RDONLY) ? PROT_READ : (PROT_READ | PROT_WRITE);
57 DBG(" ... Mapping %x(%x)+%x(%x) len=%x extend=%x", (int)pos0, (int)f->pos, ll, l, (int)F->file_size, (int)F->file_extend);
58 if (ll != F->window_size && f->buffer)
60 munmap(f->buffer, F->window_size);
65 f->buffer = sh_mmap(NULL, ll, prot, MAP_SHARED, F->fd, pos0);
67 f->buffer = sh_mmap(f->buffer, ll, prot, MAP_SHARED | MAP_FIXED, F->fd, pos0);
68 if (f->buffer == (byte *) MAP_FAILED)
69 die("mmap(%s): %m", f->name);
70 #ifdef MADV_SEQUENTIAL
71 if (ll > CPU_PAGE_SIZE)
72 madvise(f->buffer, ll, MADV_SEQUENTIAL);
74 f->bufend = f->buffer + l;
75 f->bptr = f->buffer + (f->pos - pos0);
80 bfmm_refill(struct fastbuf *f)
82 struct fb_mmap *F = FB_MMAP(f);
84 DBG("Refill <- %p %p %p %p", f->buffer, f->bptr, f->bstop, f->bufend);
85 if (f->pos >= F->file_size)
87 if (f->bstop >= f->bufend)
89 if (F->window_pos + (f->bufend - f->buffer) > F->file_size)
90 f->bstop = f->buffer + (F->file_size - F->window_pos);
93 f->pos = F->window_pos + (f->bstop - f->buffer);
94 DBG(" -> %p %p %p(%x) %p", f->buffer, f->bptr, f->bstop, (int)f->pos, f->bufend);
99 bfmm_spout(struct fastbuf *f)
101 struct fb_mmap *F = FB_MMAP(f);
102 sh_off_t end = f->pos + (f->bptr - f->bstop);
104 DBG("Spout <- %p %p %p %p", f->buffer, f->bptr, f->bstop, f->bufend);
105 if (end > F->file_size)
107 if (f->bptr < f->bufend)
110 if (f->pos >= F->file_extend)
112 F->file_extend = ALIGN_TO(F->file_extend + mmap_extend_size, (sh_off_t)CPU_PAGE_SIZE);
113 if (sh_ftruncate(F->fd, F->file_extend))
114 die("ftruncate(%s): %m", f->name);
118 DBG(" -> %p %p %p(%x) %p", f->buffer, f->bptr, f->bstop, (int)f->pos, f->bufend);
122 bfmm_seek(struct fastbuf *f, sh_off_t pos, int whence)
124 if (whence == SEEK_END)
125 pos += FB_MMAP(f)->file_size;
127 ASSERT(whence == SEEK_SET);
128 ASSERT(pos >= 0 && pos <= FB_MMAP(f)->file_size);
130 f->bptr = f->bstop = f->bufend = f->buffer; /* force refill/spout call */
131 DBG("Seek -> %p %p %p(%x) %p", f->buffer, f->bptr, f->bstop, (int)f->pos, f->bufend);
136 bfmm_close(struct fastbuf *f)
138 struct fb_mmap *F = FB_MMAP(f);
141 munmap(f->buffer, F->window_size);
142 if (F->file_extend > F->file_size &&
143 sh_ftruncate(F->fd, F->file_size))
144 die("ftruncate(%s): %m", f->name);
145 switch (F->is_temp_file)
148 if (unlink(f->name) < 0)
149 log(L_ERROR, "unlink(%s): %m", f->name);
152 die("close(%s): %m", f->name);
158 bfmm_config(struct fastbuf *f, uns item, int value)
162 case BCONFIG_IS_TEMP_FILE:
163 FB_MMAP(f)->is_temp_file = value;
171 bfmmopen_internal(int fd, byte *name, uns mode)
173 int namelen = strlen(name) + 1;
174 struct fb_mmap *F = xmalloc(sizeof(struct fb_mmap) + namelen);
175 struct fastbuf *f = &F->fb;
177 bzero(F, sizeof(*F));
178 f->name = (byte *)(F+1);
179 memcpy(f->name, name, namelen);
181 F->file_extend = F->file_size = sh_seek(fd, 0, SEEK_END);
182 if (F->file_size < 0)
183 die("seek(%s): %m", name);
185 f->pos = F->file_size;
188 f->refill = bfmm_refill;
189 f->spout = bfmm_spout;
191 f->close = bfmm_close;
192 f->config = bfmm_config;
198 int main(int argc, char **argv)
200 struct fastbuf *f = bopen_mm(argv[1], O_RDONLY);
201 struct fastbuf *g = bopen_mm(argv[2], O_RDWR | O_CREAT | O_TRUNC);
205 while ((c = bgetc(f)) >= 0)
208 DBG("Seek inside last block");
209 bsetpos(g, btell(g)-1333);
211 DBG("Seek to the beginning & write");
218 DBG("Seek nearby & read");
221 DBG("Seek far & read");