fuse_parse_cmdline(): do not print help/version text
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 10 Oct 2016 00:08:29 +0000 (17:08 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 10 Oct 2016 05:03:07 +0000 (22:03 -0700)
The current behavior makes it difficult to add help for
additional options. With the change, this becomes a lot easier.

example/fuse_lo-plus.c
example/hello_ll.c
example/timefs1.c
example/timefs2.c
example/timefs3.c
include/fuse_lowlevel.h
lib/fuse_versionscript
lib/helper.c

index 60c2daf6588d0a98c6bd26b5b8bd142f424113bd..c27f377577abff3118f2ec9e9ff332df4f76009b 100644 (file)
@@ -452,10 +452,21 @@ int main(int argc, char *argv[])
 
        if (fuse_parse_cmdline(&args, &opts) != 0)
                return 1;
-       if (opts.show_help || opts.show_version) {
-               ret = 1;
+       if (opts.show_help) {
+               printf("usage: %s [options] <mountpoint>\n\n", argv[0]);
+               fuse_cmdline_help();
+               fuse_lowlevel_help();
+               fuse_mount_help();
+               ret = 0;
+               goto err_out1;
+       } else if (opts.show_version) {
+               printf("FUSE library version %s\n", fuse_pkgversion());
+               fuse_lowlevel_version();
+               fuse_mount_version();
+               ret = 0;
                goto err_out1;
        }
+
        lo.debug = opts.debug;
        lo.root.next = lo.root.prev = &lo.root;
        lo.root.fd = open("/", O_PATH);
index 014b8ca3ad3173680f9dc4ff8781303e99f134c0..b830cb220813b7448529c89df5e9b08c5510f796 100644 (file)
@@ -192,8 +192,18 @@ int main(int argc, char *argv[])
 
        if (fuse_parse_cmdline(&args, &opts) != 0)
                return 1;
-       if (opts.show_help || opts.show_version) {
-               ret = 1;
+       if (opts.show_help) {
+               printf("usage: %s [options] <mountpoint>\n\n", argv[0]);
+               fuse_cmdline_help();
+               fuse_lowlevel_help();
+               fuse_mount_help();
+               ret = 0;
+               goto err_out1;
+       } else if (opts.show_version) {
+               printf("FUSE library version %s\n", fuse_pkgversion());
+               fuse_lowlevel_version();
+               fuse_mount_version();
+               ret = 0;
                goto err_out1;
        }
 
index cff9545a8fd199437b1d83c9febeae31a1647949..430e00faa8dc1a224949bb43ff602ee64fe1e6e6 100644 (file)
@@ -273,6 +273,15 @@ static void* update_fs(void *data) {
     return NULL;
 }
 
+static void show_help(const char *progname)
+{
+    printf("usage: %s [options] <mountpoint>\n\n", progname);
+    printf("File-system specific options:\n"
+               "    --update-interval=<secs>  Update-rate of file system contents\n"
+               "    --no-notify            Disable kernel notifications\n"
+               "\n");
+}
+
 int main(int argc, char *argv[]) {
     struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
     struct fuse_session *se;
@@ -284,13 +293,26 @@ int main(int argc, char *argv[]) {
                        opt_proc) == -1)
         return 1;
 
-    if (fuse_parse_cmdline(&args, &opts) != 0)
-        return 1;
-    if (opts.show_help || opts.show_version) {
+    if (fuse_parse_cmdline(&args, &opts) != 0) {
         ret = 1;
         goto err_out1;
     }
 
+    if (opts.show_help) {
+        show_help(argv[0]);
+        fuse_cmdline_help();
+        fuse_lowlevel_help();
+        fuse_mount_help();
+        ret = 0;
+        goto err_out1;
+    } else if (opts.show_version) {
+        printf("FUSE library version %s\n", fuse_pkgversion());
+        fuse_lowlevel_version();
+        fuse_mount_version();
+        ret = 0;
+        goto err_out1;
+    }
+
     se = fuse_session_new(&args, &tfs_oper,
                           sizeof(tfs_oper), NULL);
     if (se == NULL)
@@ -324,8 +346,8 @@ err_out3:
 err_out2:
     fuse_session_destroy(se);
 err_out1:
-    free(opts.mountpoint);
     fuse_opt_free_args(&args);
+    free(opts.mountpoint);
 
     return ret ? 1 : 0;
 }
index 31942304aa401cec248ea6aaab506ecc98c870ad..ea10cc183ae5262b921ef234f65ccb3a53af75d9 100644 (file)
@@ -319,6 +319,15 @@ static void* update_fs(void *data) {
     return NULL;
 }
 
+static void show_help(const char *progname)
+{
+    printf("usage: %s [options] <mountpoint>\n\n", progname);
+    printf("File-system specific options:\n"
+               "    --update-interval=<secs>  Update-rate of file system contents\n"
+               "    --no-notify            Disable kernel notifications\n"
+               "\n");
+}
+
 int main(int argc, char *argv[]) {
     struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
     struct fuse_session *se;
@@ -332,8 +341,18 @@ int main(int argc, char *argv[]) {
 
     if (fuse_parse_cmdline(&args, &opts) != 0)
         return 1;
-    if (opts.show_help || opts.show_version) {
-        ret = 1;
+    if (opts.show_help) {
+        show_help(argv[0]);
+        fuse_cmdline_help();
+        fuse_lowlevel_help();
+        fuse_mount_help();
+        ret = 0;
+        goto err_out1;
+    } else if (opts.show_version) {
+        printf("FUSE library version %s\n", fuse_pkgversion());
+        fuse_lowlevel_version();
+        fuse_mount_version();
+        ret = 0;
         goto err_out1;
     }
 
index 0a52e0f20536c0caaebcc4ba2ab545cd9e9ae4d8..c04b81c05dca0f47556b7b8f7b210dadab5f4f4a 100644 (file)
@@ -253,6 +253,16 @@ static void* update_fs(void *data) {
     return NULL;
 }
 
+static void show_help(const char *progname)
+{
+    printf("usage: %s [options] <mountpoint>\n\n", progname);
+    printf("File-system specific options:\n"
+               "    --timeout=<secs>       Timeout for kernel caches\n"
+               "    --update-interval=<secs>  Update-rate of file system contents\n"
+               "    --no-notify            Disable kernel notifications\n"
+               "\n");
+}
+
 int main(int argc, char *argv[]) {
     struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
     struct fuse_session *se;
@@ -266,8 +276,18 @@ int main(int argc, char *argv[]) {
 
     if (fuse_parse_cmdline(&args, &opts) != 0)
         return 1;
-    if (opts.show_help || opts.show_version) {
-        ret = 1;
+    if (opts.show_help) {
+        show_help(argv[0]);
+        fuse_cmdline_help();
+        fuse_lowlevel_help();
+        fuse_mount_help();
+        ret = 0;
+        goto err_out1;
+    } else if (opts.show_version) {
+        printf("FUSE library version %s\n", fuse_pkgversion());
+        fuse_lowlevel_version();
+        fuse_mount_version();
+        ret = 0;
         goto err_out1;
     }
 
index a834eba16b47e6b4194391db8826353089ed80f9..4c39442bd1fb0f11b2f0fe00462e2e4b0e8fdbee 100644 (file)
@@ -1599,6 +1599,12 @@ void fuse_lowlevel_help(void);
  */
 void fuse_mount_help(void);
 
+
+/**
+ * Print available options for `fuse_parse_cmdline()`.
+ */
+void fuse_cmdline_help(void);
+
 /* ----------------------------------------------------------- *
  * Filesystem setup & teardown                                 *
  * ----------------------------------------------------------- */
@@ -1615,21 +1621,14 @@ struct fuse_cmdline_opts {
 
 /**
  * Utility function to parse common options for simple file systems
- * using the low-level API. Available options are listed in `struct
- * fuse_opt fuse_helper_opts[]`. A single non-option argument is
- * treated as the mountpoint. Multiple (or no) non-option arguments
- * will result in an error.
- *
- * Unknown options are passed through unchanged. Known options (other
- * than --debug, which is preserved) and the mountpoint argument are
- * removed from *args*.
- *
- * If --help or --version is specified, the appropriate information is
- * printed to stdout and the function returns -1.
- *
- * If neither -o subtype= or -o fsname= options are given, the subtype
- * is set to the basename of the program (the fsname defaults to
- * "fuse").
+ * using the low-level API. A help text that describes the available
+ * options can be printed with `fuse_cmdline_help`. A single
+ * non-option argument is treated as the mountpoint. Multiple
+ * non-option arguments will result in an error.
+ *
+ * If neither -o subtype= or -o fsname= options are given, a new
+ * subtype option will be added and set to the basename of the program
+ * (the fsname will remain unset, and then defaults to "fuse").
  *
  * @param args argument vector (input+output)
  * @param opts output argument for parsed options
index 14eb3624d2ad96704e62d3b7f908d5e652474df7..3301b12057cb60c1663bc3e4373332306fb7c080 100644 (file)
@@ -127,6 +127,7 @@ FUSE_3.0 {
                fuse_lowlevel_help;
                fuse_lowlevel_version;
                fuse_mount_help;
+               fuse_cmdline_help;
                fuse_mount_version;
 
        local:
index 140de008326ef2d22a8f7f79118ccdf271f474fa..da93413f02be701a433b322a8aed8ef4ba4ad42a 100644 (file)
@@ -48,12 +48,7 @@ static const struct fuse_opt fuse_helper_opts[] = {
        FUSE_OPT_END
 };
 
-static void usage(const char *progname)
-{
-       printf("usage: %s mountpoint [options]\n\n", progname);
-}
-
-static void helper_help(void)
+void fuse_cmdline_help(void)
 {
        printf("General options:\n"
               "    -h   --help            print help\n"
@@ -64,11 +59,6 @@ static void helper_help(void)
               "\n");
 }
 
-static void helper_version(void)
-{
-       printf("FUSE library version: %s\n", PACKAGE_VERSION);
-}
-
 static int fuse_helper_opt_proc(void *data, const char *arg, int key,
                                struct fuse_args *outargs)
 {
@@ -126,27 +116,6 @@ int fuse_parse_cmdline(struct fuse_args *args,
                           fuse_helper_opt_proc) == -1)
                return -1;
 
-       if (opts->show_version) {
-               helper_version();
-               fuse_lowlevel_version();
-               fuse_mount_version();
-               return -1;
-       }
-
-       if (opts->show_help) {
-               usage(args->argv[0]);
-               helper_help();
-               fuse_lowlevel_help();
-               fuse_mount_help();
-               return -1;
-       }
-
-       if (!opts->mountpoint) {
-               fprintf(stderr, "error: no mountpoint specified\n");
-               usage(args->argv[0]);
-               return -1;
-       }
-
        /* If neither -o subtype nor -o fsname are specified,
           set subtype to program's basename */
        if (!opts->nodefault_subtype)
@@ -225,7 +194,7 @@ int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
                return 1;
 
        if (opts.show_version) {
-               helper_version();
+               printf("FUSE library version %s\n", PACKAGE_VERSION);
                fuse_lowlevel_version();
                fuse_mount_version();
                res = 0;
@@ -235,7 +204,7 @@ int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
        /* Re-add --help for later processing by fuse_new()
           (that way we also get help for modules options) */
        if (opts.show_help) {
-               helper_help();
+               fuse_cmdline_help();
                if (fuse_opt_add_arg(&args, "--help") == -1) {
                        res = 1;
                        goto out1;
@@ -245,7 +214,6 @@ int fuse_main_real(int argc, char *argv[], const struct fuse_operations *op,
        if (!opts.show_help &&
            !opts.mountpoint) {
                fprintf(stderr, "error: no mountpoint specified\n");
-               usage(args.argv[0]);
                res = 1;
                goto out1;
        }