Home | History | Annotate | Line # | Download | only in librefuse
fuse_opt.h revision 1.1
      1 /*
      2  * Copyright (c) 2007 Alistair Crooks.  All rights reserved.
      3  *
      4  * Redistribution and use in source and binary forms, with or without
      5  * modification, are permitted provided that the following conditions
      6  * are met:
      7  * 1. Redistributions of source code must retain the above copyright
      8  *    notice, this list of conditions and the following disclaimer.
      9  * 2. Redistributions in binary form must reproduce the above copyright
     10  *    notice, this list of conditions and the following disclaimer in the
     11  *    documentation and/or other materials provided with the distribution.
     12  * 3. The name of the author may not be used to endorse or promote
     13  *    products derived from this software without specific prior written
     14  *    permission.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     17  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
     20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
     22  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     24  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
     25  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
     26  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27  */
     28 
     29 #ifndef _FUSE_OPT_H_
     30 #define _FUSE_OPT_H_
     31 
     32 #include <fuse.h>
     33 
     34 enum {
     35 	FUSE_OPT_KEY_OPT = -1,
     36 	FUSE_OPT_KEY_NONOPT = -2,
     37 	FUSE_OPT_KEY_KEEP = -3,
     38 	FUSE_OPT_KEY_DISCARD = -4
     39 };
     40 
     41 struct fuse_opt {
     42 	const char	*templ;
     43 	int32_t		offset;
     44 	int32_t		value;
     45 };
     46 
     47 #define FUSE_OPT_KEY(templ, key) { templ, -1U, key }
     48 #define FUSE_OPT_END { .templ = NULL }
     49 
     50 typedef int (*fuse_opt_proc_t)(void *, const char *, int, struct fuse_args *);
     51 
     52 
     53 int fuse_opt_add_arg(struct fuse_args *, const char *);
     54 void fuse_opt_free_args(struct fuse_args *);
     55 int fuse_opt_insert_arg(struct fuse_args *, int, const char *);
     56 int fuse_opt_add_opt(char **, const char *);
     57 int fuse_opt_parse(struct fuse_args *, void *,
     58 		   const struct fuse_opt *, fuse_opt_proc_t);
     59 int fuse_opt_match(const struct fuse_opt *, const char *);
     60 
     61 #endif /* _FUSE_OPT_H_ */
     62