2 * UCW Library -- FastIO on files with run-time parametrization
4 * (c) 2007 Pavel Charvat <pchar@ucw.cz>
5 * (c) 2007 Martin Mares <mj@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
14 #include "lib/fastbuf.h"
19 struct fb_params fbpar_def = {
26 fbpar_cf_commit(struct fb_params *p UNUSED)
28 #ifndef CONFIG_UCW_THREADS
29 if (p->type == FB_DIRECT)
30 return "Direct I/O is supported only with CONFIG_UCW_THREADS";
35 struct cf_section fbpar_cf = {
36 # define F(x) PTR_TO(struct fb_params, x)
37 CF_TYPE(struct fb_params),
38 CF_COMMIT(fbpar_cf_commit),
40 CF_LOOKUP("Type", (int *)F(type), ((char *[]){"std", "direct", "mmap", NULL})),
41 CF_UNS("BufSize", F(buffer_size)),
42 CF_UNS("KeepBackBuf", F(keep_back_buf)),
43 CF_UNS("ReadAhead", F(read_ahead)),
44 CF_UNS("WriteBack", F(write_back)),
50 static struct cf_section fbpar_global_cf = {
52 CF_SECTION("Defaults", &fbpar_def, &fbpar_cf),
57 static void CONSTRUCTOR
58 fbpar_global_init(void)
60 cf_declare_section("FBParam", &fbpar_global_cf, 0);
63 static struct fastbuf *
64 bopen_fd_internal(int fd, struct fb_params *params, uns mode, const char *name)
69 sprintf(buf, "fd%d", fd);
75 #ifdef CONFIG_UCW_THREADS
77 fb = fbdir_open_fd_internal(fd, name, params->asio,
78 params->buffer_size ? : fbpar_def.buffer_size,
79 params->read_ahead ? : fbpar_def.read_ahead,
80 params->write_back ? : fbpar_def.write_back);
81 if (!~mode && !fbdir_cheat && ((int)(mode = fcntl(fd, F_GETFL)) < 0 || fcntl(fd, F_SETFL, mode | O_DIRECT)) < 0)
82 msg(L_WARN, "Cannot set O_DIRECT on fd %d: %m", fd);
86 fb = bfdopen_internal(fd, name,
87 params->buffer_size ? : fbpar_def.buffer_size);
88 if (params->keep_back_buf)
89 bconfig(fb, BCONFIG_KEEP_BACK_BUF, 1);
92 if (!~mode && (int)(mode = fcntl(fd, F_GETFL)) < 0)
93 die("Cannot get flags of fd %d: %m", fd);
94 return bfmmopen_internal(fd, name, mode);
100 static struct fastbuf *
101 bopen_file_internal(const char *name, int mode, struct fb_params *params, int try)
105 #ifdef CONFIG_UCW_THREADS
106 if (params->type == FB_DIRECT && !fbdir_cheat)
109 if (params->type == FB_MMAP && (mode & O_ACCMODE) == O_WRONLY)
110 mode = (mode & ~O_ACCMODE) | O_RDWR;
111 int fd = sh_open(name, mode, 0666);
116 die("Unable to %s file %s: %m", (mode & O_CREAT) ? "create" : "open", name);
117 struct fastbuf *fb = bopen_fd_internal(fd, params, mode, name);
120 bseek(fb, 0, SEEK_END);
125 bopen_file(const char *name, int mode, struct fb_params *params)
127 return bopen_file_internal(name, mode, params, 0);
131 bopen_file_try(const char *name, int mode, struct fb_params *params)
133 return bopen_file_internal(name, mode, params, 1);
137 bopen_fd(int fd, struct fb_params *params)
139 return bopen_fd_internal(fd, params ? : &fbpar_def, ~0U, NULL);
142 /* Function for use by individual file back-ends */
145 bclose_file_helper(struct fastbuf *f, int fd, int is_temp_file)
147 switch (is_temp_file)
150 if (unlink(f->name) < 0)
151 msg(L_ERROR, "unlink(%s): %m", f->name);
154 die("close(%s): %m", f->name);
158 /* Compatibility wrappers */
161 bopen_try(const char *name, uns mode, uns buflen)
163 return bopen_file_try(name, mode, &(struct fb_params){ .type = FB_STD, .buffer_size = buflen });
167 bopen(const char *name, uns mode, uns buflen)
169 return bopen_file(name, mode, &(struct fb_params){ .type = FB_STD, .buffer_size = buflen });
173 bfdopen(int fd, uns buflen)
175 return bopen_fd(fd, &(struct fb_params){ .type = FB_STD, .buffer_size = buflen });
179 bfdopen_shared(int fd, uns buflen)
181 struct fastbuf *f = bfdopen(fd, buflen);
182 bconfig(f, BCONFIG_IS_TEMP_FILE, 2);