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 <ucw/fastbuf.h>
15 #include <ucw/trans.h>
20 struct fb_params fbpar_def = {
27 fbpar_cf_commit(struct fb_params *p UNUSED)
29 if (p->type == FB_DIRECT)
31 #ifndef CONFIG_UCW_THREADS
32 return "Direct I/O is supported only with CONFIG_UCW_THREADS";
35 return "Direct I/O is not supported on darwin";
37 #ifndef CONFIG_UCW_DIRECT_IO
38 return "Direct I/O disabled by configure switch -CONFIG_UCW_DIRECT_IO";
40 #ifndef CONFIG_UCW_FB_DIRECT
41 return "Direct I/O disabled by configure switch -CONFIG_UCW_FB_DIRECT";
47 struct cf_section fbpar_cf = {
48 # define F(x) PTR_TO(struct fb_params, x)
49 CF_TYPE(struct fb_params),
50 CF_COMMIT(fbpar_cf_commit),
52 CF_LOOKUP("Type", (int *)F(type), ((const char * const []){"std", "direct", "mmap", NULL})),
53 CF_UINT("BufSize", F(buffer_size)),
54 CF_UINT("KeepBackBuf", F(keep_back_buf)),
55 CF_UINT("ReadAhead", F(read_ahead)),
56 CF_UINT("WriteBack", F(write_back)),
62 static struct cf_section fbpar_global_cf = {
64 CF_SECTION("Defaults", &fbpar_def, &fbpar_cf),
69 static void CONSTRUCTOR
70 fbpar_global_init(void)
72 cf_declare_section("FBParam", &fbpar_global_cf, 0);
75 static struct fastbuf *
76 bopen_fd_internal(int fd, struct fb_params *params, uint mode, const char *name)
81 sprintf(buf, "fd%d", fd);
87 #ifdef CONFIG_UCW_FB_DIRECT
89 fb = fbdir_open_fd_internal(fd, name, params->asio,
90 params->buffer_size ? : fbpar_def.buffer_size,
91 params->read_ahead ? : fbpar_def.read_ahead,
92 params->write_back ? : fbpar_def.write_back);
93 if (!~mode && !fbdir_cheat && ((int)(mode = fcntl(fd, F_GETFL)) < 0 || fcntl(fd, F_SETFL, mode | O_DIRECT) < 0))
94 msg(L_WARN, "Cannot set O_DIRECT on fd %d: %m", fd);
98 fb = bfdopen_internal(fd, name,
99 params->buffer_size ? : fbpar_def.buffer_size);
100 if (params->keep_back_buf)
101 bconfig(fb, BCONFIG_KEEP_BACK_BUF, 1);
104 if (!~mode && (int)(mode = fcntl(fd, F_GETFL)) < 0)
105 trans_throw("ucw.fb.open", NULL, "Cannot get flags of fd %d: %m", fd);
106 return bfmmopen_internal(fd, name, mode);
112 static struct fastbuf *
113 bopen_file_internal(const char *name, int mode, struct fb_params *params, int try)
117 #ifdef CONFIG_UCW_FB_DIRECT
118 if (params->type == FB_DIRECT && !fbdir_cheat)
121 if (params->type == FB_MMAP && (mode & O_ACCMODE) == O_WRONLY)
122 mode = (mode & ~O_ACCMODE) | O_RDWR;
123 int fd = ucw_open(name, mode, 0666);
128 trans_throw("ucw.fb.open", NULL, "Unable to %s file %s: %m", (mode & O_CREAT) ? "create" : "open", name);
129 struct fastbuf *fb = bopen_fd_internal(fd, params, mode, name);
132 bseek(fb, 0, SEEK_END);
137 bopen_file(const char *name, int mode, struct fb_params *params)
139 return bopen_file_internal(name, mode, params, 0);
143 bopen_file_try(const char *name, int mode, struct fb_params *params)
145 return bopen_file_internal(name, mode, params, 1);
149 bopen_fd_name(int fd, struct fb_params *params, const char *name)
151 return bopen_fd_internal(fd, params ? : &fbpar_def, ~0U, name);
154 /* Function for use by individual file back-ends */
157 bclose_file_helper(struct fastbuf *f, int fd, int is_temp_file)
159 switch (is_temp_file)
162 if (unlink(f->name) < 0)
163 msg(L_ERROR, "unlink(%s): %m", f->name);
166 msg(L_ERROR, "close(%s): %m", f->name);
170 /* Compatibility wrappers */
173 bopen_try(const char *name, uint mode, uint buflen)
175 return bopen_file_try(name, mode, &(struct fb_params){ .type = FB_STD, .buffer_size = buflen });
179 bopen(const char *name, uint mode, uint buflen)
181 return bopen_file(name, mode, &(struct fb_params){ .type = FB_STD, .buffer_size = buflen });
185 bfdopen(int fd, uint buflen)
187 return bopen_fd(fd, &(struct fb_params){ .type = FB_STD, .buffer_size = buflen });
191 bfdopen_shared(int fd, uint buflen)
193 struct fastbuf *f = bfdopen(fd, buflen);
194 bconfig(f, BCONFIG_IS_TEMP_FILE, 2);