+2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
+
+ * Released 2.5.0-pre1
+
2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
* libfuse: added option parsing interface, defined in
+What is new in 2.5
+
+ - Merge library part of FreeBSD port
+
+ - New atomic create+open, access and ftruncate operations
+
+ - On filesystems implementing the new create+open operation, and
+ running on Linux kernels 2.6.15 or later, the 'cp' operation will
+ work correctly when copying read-only files.
+
+ - New option parsing interface added to the library
+
+ - Lots of minor improvements and fixes
+
What is new in 2.4
- Simplify device opening. Now '/dev/fuse' is a requirement
-AC_INIT(fuse, 2.5.0-pre0)
+AC_INIT(fuse, 2.5.0-pre1)
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(include/config.h)
* If 'argv' is NULL, the values pointed by argcout and argvout will
* be used as input
*
- * A NULL 'opts' is the same as an 'opts' array containing a single
+ * A NULL 'opts' is equivalent to an 'opts' array containing a single
* end marker
*
- * If 'proc' is NULL, then any non-matching options will cause an
- * error to be returned
+ * A NULL 'proc' is equivalent to a processing function always
+ * returning '1'
*
* If argvout is NULL, then any output arguments are discarded
*
* If argcout is NULL, then the output argument count is not stored
*
* @param argc is the input argument count
- * @param argv is the input argument vector, may be NULL
+ * @param argv is the input argument vector
* @param data is the user data
- * @param opts is the option description array, may be NULL
- * @param proc is the processing function, may be NULL
- * @param argcout is pointer to output argument count, may be NULL
- * @param argvout is pointer to output argument vector, may be NULL
+ * @param opts is the option description array
+ * @param proc is the processing function
+ * @param argcout is pointer to output argument count
+ * @param argvout is pointer to output argument vector
* @return -1 on error, 0 on success
*/
int fuse_opt_parse(int argc, char *argv[], void *data,
-AC_INIT(fuse-kernel, 2.5.0-pre0)
+AC_INIT(fuse-kernel, 2.5.0-pre1)
AC_CONFIG_HEADERS([config.h])
AC_PROG_INSTALL
FUSE_OPT_END
};
+static int fuse_ll_opt_proc(void *data, const char *arg, int key)
+{
+ (void) data;
+ (void) key;
+ fprintf(stderr, "fuse: unknown option `%s'\n", arg);
+ return -1;
+}
+
int fuse_lowlevel_is_lib_option(const char *opt)
{
return fuse_opt_match(fuse_ll_opts, opt);
if (opts) {
const char *argv[] = { "", "-o", opts, NULL };
- if (fuse_opt_parse(3, (char **) argv, f, fuse_ll_opts, NULL,
- NULL, NULL) == -1)
+ if (fuse_opt_parse(3, (char **) argv, f, fuse_ll_opts,
+ fuse_ll_opt_proc, NULL, NULL) == -1)
goto out_free;
}
static int call_proc(struct fuse_opt_context *ctx, const char *arg, int key,
int iso)
{
- int res;
-
- if (!ctx->proc) {
- fprintf(stderr, "fuse: unknown option `%s'\n", arg);
- return -1;
+ if (ctx->proc) {
+ int res = ctx->proc(ctx->data, arg, key);
+ if (res == -1 || !res)
+ return res;
}
-
- res = ctx->proc(ctx->data, arg, key);
- if (res == -1 || !res)
- return res;
-
if (iso)
return add_opt(ctx, arg);
else