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.
13 #include "ucw/fastbuf.h"
22 static uns mmap_window_size = 16*CPU_PAGE_SIZE;
23 static uns mmap_extend_size = 4*CPU_PAGE_SIZE;
26 static struct cf_section fbmm_config = {
28 CF_UNS("WindowSize", &mmap_window_size),
29 CF_UNS("ExtendSize", &mmap_extend_size),
34 static void CONSTRUCTOR fbmm_init_config(void)
36 cf_declare_section("FBMMap", &fbmm_config, 0);
45 ucw_off_t file_extend;
50 #define FB_MMAP(f) ((struct fb_mmap *)(f)->is_fastbuf)
53 bfmm_map_window(struct fastbuf *f)
55 struct fb_mmap *F = FB_MMAP(f);
56 ucw_off_t pos0 = f->pos & ~(ucw_off_t)(CPU_PAGE_SIZE-1);
57 int l = MIN((ucw_off_t)mmap_window_size, F->file_extend - pos0);
58 uns ll = ALIGN_TO(l, CPU_PAGE_SIZE);
59 int prot = ((F->mode & O_ACCMODE) == O_RDONLY) ? PROT_READ : (PROT_READ | PROT_WRITE);
61 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);
62 if (ll != F->window_size && f->buffer)
64 munmap(f->buffer, F->window_size);
69 f->buffer = ucw_mmap(NULL, ll, prot, MAP_SHARED, F->fd, pos0);
71 f->buffer = ucw_mmap(f->buffer, ll, prot, MAP_SHARED | MAP_FIXED, F->fd, pos0);
72 if (f->buffer == (byte *) MAP_FAILED)
75 bthrow(f, "mmap", "mmap(%s): %m", f->name);
77 #ifdef MADV_SEQUENTIAL
78 if (ll > CPU_PAGE_SIZE)
79 madvise(f->buffer, ll, MADV_SEQUENTIAL);
81 f->bufend = f->buffer + l;
82 f->bptr = f->buffer + (f->pos - pos0);
87 bfmm_refill(struct fastbuf *f)
89 struct fb_mmap *F = FB_MMAP(f);
91 DBG("Refill <- %p %p %p %p", f->buffer, f->bptr, f->bstop, f->bufend);
92 if (f->pos >= F->file_size)
94 if (f->bstop >= f->bufend)
96 if (F->window_pos + (f->bufend - f->buffer) > F->file_size)
97 f->bstop = f->buffer + (F->file_size - F->window_pos);
100 f->pos = F->window_pos + (f->bstop - f->buffer);
101 DBG(" -> %p %p %p(%x) %p", f->buffer, f->bptr, f->bstop, (int)f->pos, f->bufend);
106 bfmm_spout(struct fastbuf *f)
108 struct fb_mmap *F = FB_MMAP(f);
109 ucw_off_t end = f->pos + (f->bptr - f->bstop);
111 DBG("Spout <- %p %p %p %p", f->buffer, f->bptr, f->bstop, f->bufend);
112 if (end > F->file_size)
114 if (f->bptr < f->bufend)
117 if (f->pos >= F->file_extend)
119 F->file_extend = ALIGN_TO(F->file_extend + mmap_extend_size, (ucw_off_t)CPU_PAGE_SIZE);
120 if (ucw_ftruncate(F->fd, F->file_extend))
121 bthrow(f, "write", "ftruncate(%s): %m", f->name);
125 DBG(" -> %p %p %p(%x) %p", f->buffer, f->bptr, f->bstop, (int)f->pos, f->bufend);
129 bfmm_seek(struct fastbuf *f, ucw_off_t pos, int whence)
131 if (whence == SEEK_END)
132 pos += FB_MMAP(f)->file_size;
134 ASSERT(whence == SEEK_SET);
135 ASSERT(pos >= 0 && pos <= FB_MMAP(f)->file_size);
137 f->bptr = f->bstop = f->bufend = f->buffer; /* force refill/spout call */
138 DBG("Seek -> %p %p %p(%x) %p", f->buffer, f->bptr, f->bstop, (int)f->pos, f->bufend);
143 bfmm_close(struct fastbuf *f)
145 struct fb_mmap *F = FB_MMAP(f);
147 munmap(f->buffer, F->window_size);
148 if (!(f->flags & FB_DEAD) &&
149 F->file_extend > F->file_size &&
150 ucw_ftruncate(F->fd, F->file_size))
151 bthrow(f, "write", "ftruncate(%s): %m", f->name);
152 bclose_file_helper(f, F->fd, F->is_temp_file);
157 bfmm_config(struct fastbuf *f, uns item, int value)
163 case BCONFIG_IS_TEMP_FILE:
164 orig = FB_MMAP(f)->is_temp_file;
165 FB_MMAP(f)->is_temp_file = value;
173 bfmmopen_internal(int fd, const char *name, uns mode)
175 int namelen = strlen(name) + 1;
176 struct fb_mmap *F = xmalloc(sizeof(struct fb_mmap) + namelen);
177 struct fastbuf *f = &F->fb;
179 bzero(F, sizeof(*F));
180 f->name = (byte *)(F+1);
181 memcpy(f->name, name, namelen);
183 F->file_extend = F->file_size = ucw_seek(fd, 0, SEEK_END);
184 if (F->file_size < 0)
185 die("seek(%s): %m", name);
187 f->pos = F->file_size;
190 f->refill = bfmm_refill;
191 f->spout = bfmm_spout;
193 f->close = bfmm_close;
194 f->config = bfmm_config;
200 int main(int UNUSED argc, char **argv)
202 struct fb_params par = { .type = FB_MMAP };
203 struct fastbuf *f = bopen_file(argv[1], O_RDONLY, &par);
204 struct fastbuf *g = bopen_file(argv[2], O_RDWR | O_CREAT | O_TRUNC, &par);
208 while ((c = bgetc(f)) >= 0)
211 DBG("Seek inside last block");
212 bsetpos(g, btell(g)-1333);
214 DBG("Seek to the beginning & write");
221 DBG("Seek nearby & read");
224 DBG("Seek far & read");