]> err.no Git - util-linux/commitdiff
mount: fsprobe: rename the rest of API routines to fsprobe_*
authorKarel Zak <kzak@redhat.com>
Thu, 10 May 2007 09:21:35 +0000 (11:21 +0200)
committerKarel Zak <kzak@redhat.com>
Thu, 17 May 2007 10:10:17 +0000 (12:10 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
mount/fsprobe.h
mount/fsprobe_blkid.c
mount/fstab.c
mount/mount.c
mount/swapon.c

index cc429e15fbe104f1da3b1cfd05b7ae641b3711dc..e59440e0e922d2d4807e019caa3b2eeaf3bea1b1 100644 (file)
@@ -1,18 +1,32 @@
-#ifdef HAVE_LIBBLKID
-#include <blkid/blkid.h>
-extern blkid_cache blkid;
-#endif
-
-extern void mount_blkid_get_cache(void);
-extern void mount_blkid_put_cache(void);
-extern const char *mount_get_devname_by_uuid(const char *uuid);
-extern const char *mount_get_devname_by_label(const char *label);
-extern const char *mount_get_volume_label_by_spec(const char *spec);
-extern const char *mount_get_devname(const char *spec);
-extern const char *mount_get_devname_for_mounting(const char *spec);
-extern int fsprobe_known_fstype(const char *fstype);
+#ifndef MOUNT_FSPROBE_H
+#define MOUNT_FSPROBE_H
+/*
+ * This is the generic interface for filesystem guessing libraries.
+ * Implementations are provided by
+ *
+ *    fsprobe_blkid.c for libblkid from e2fsprogs
+ *    fsprobe_volumeid.c for libvolume_id from udev
+ *
+ * Copyright (C) 2007 Kay Sievers <kay.sievers@vrfy.org>
+ * Copyright (C) 2007 Matthias Koenig <mkoenig@suse.de>
+ * Copyright (C) 2007 Karel Zak <kzak@redhat.com>
+ */
+
+extern void fsprobe_init(void);
+extern void fsprobe_exit(void);
+
+extern const char *fsprobe_get_devname_by_uuid(const char *uuid);
+extern const char *fsprobe_get_devname_by_label(const char *label);
+
+extern const char *fsprobe_get_label_by_devname(const char *devname);
+extern const char *fsprobe_get_uuid_by_devname(const char *devname);
 extern const char *fsprobe_get_fstype_by_devname(const char *devname);
 
+extern const char *fsprobe_get_devname(const char *spec);
+extern const char *fsprobe_get_devname_for_mounting(const char *spec);
+
+extern int fsprobe_known_fstype(const char *fstype);
+
 struct mountargs {
        const char *spec;
        const char *node;
@@ -27,3 +41,4 @@ extern int fsprobe_procfsloop_mount(int (*mount_fn)(struct mountargs *),
                        struct mountargs *args,
                        const char **types);
 
+#endif /* MOUNT_FSPROBE_H */
index 7f8c3624c4675ca0c346b04662f2091e4be0f85d..d25b97311d89dc26bc3a2219f630188c1ca28e7b 100644 (file)
@@ -1,43 +1,47 @@
 #include <stdio.h>
+#include <blkid/blkid.h>
 #include "fsprobe.h"
 
-#ifdef HAVE_LIBBLKID
-
-blkid_cache blkid;
+static blkid_cache blkid;
 
 void
-mount_blkid_get_cache(void) {
+fsprobe_init(void) {
        blkid_get_cache(&blkid, NULL);
 }
 
 void
-mount_blkid_put_cache(void) {
+fsprobe_exit(void) {
        blkid_put_cache(blkid);
 }
 
 const char *
-mount_get_volume_label_by_spec(const char *spec) {
-       return blkid_get_tag_value(blkid, "LABEL", spec);
+fsprobe_get_label_by_devname(const char *devname) {
+       return blkid_get_tag_value(blkid, "LABEL", devname);
+}
+
+const char *
+fsprobe_get_uuid_by_devname(const char *devname) {
+       return blkid_get_tag_value(blkid, "UUID", devname);
 }
 
 const char *
-mount_get_devname(const char *spec) {
+fsprobe_get_devname(const char *spec) {
        return blkid_get_devname(blkid, spec, 0);
 }
 
 const char *
-mount_get_devname_by_uuid(const char *uuid) {
+fsprobe_get_devname_by_uuid(const char *uuid) {
        return blkid_get_devname(blkid, "UUID", uuid);
 }
 
 const char *
-mount_get_devname_by_label(const char *label) {
+fsprobe_get_devname_by_label(const char *label) {
        return blkid_get_devname(blkid, "LABEL", label);
 }
 
 /* Also when no UUID= or LABEL= occur? No verbose? No warnings? */
 const char *
-mount_get_devname_for_mounting(const char *spec) {
+fsprobe_get_devname_for_mounting(const char *spec) {
        return blkid_get_devname(blkid, spec, 0);
 }
 
@@ -52,4 +56,3 @@ fsprobe_get_fstype_by_devname(const char *devname) {
        return blkid_get_tag_value(blkid, "TYPE", devname);
 }
 
-#endif
index 5267f620b4658ceafe1f48ec58b2c768f2eae13c..c47f20d289698380d79811b561b2dc7cfefbe740 100644 (file)
@@ -292,7 +292,7 @@ has_label(const char *device, const char *label) {
        const char *devlabel;
        int ret;
 
-       devlabel = mount_get_volume_label_by_spec(device);
+       devlabel = fsprobe_get_label_by_devname(device);
        ret = !strcmp(label, devlabel);
        /* free(devlabel); */
        return ret;
@@ -303,7 +303,7 @@ has_uuid(const char *device, const char *uuid){
        const char *devuuid;
        int ret;
 
-       devuuid = mount_get_devname_by_uuid(device);
+       devuuid = fsprobe_get_uuid_by_devname(device);
        ret = !strcmp(uuid, devuuid);
        /* free(devuuid); */
        return ret;
@@ -745,8 +745,8 @@ int verbose;
 int mount_quiet;
 char *progname;
 
-const char *mount_get_volume_label_by_spec(const char *spec) { return NULL; }
-const char *mount_get_devname_by_uuid(const char *uuid) { return NULL; }
+const char *fsprobe_get_label_by_devname(const char *spec) { return NULL; }
+const char *fsprobe_get_uuid_by_devname(const char *spec) { return NULL; }
 struct my_mntent *my_getmntent (mntFILE *mfp) { return NULL; }
 mntFILE *my_setmntent (const char *file, char *mode) { return NULL; }
 void my_endmntent (mntFILE *mfp) { }
index a443c3587dcb3061f17b3b66239ea97ded57f15e..02aeb967eabcdce84383b682ebd5439361995cda 100644 (file)
@@ -232,6 +232,11 @@ parse_string_opt(char *s) {
        return 0;
 }
 
+static void
+my_free(const void *s) {
+       if (s)
+               free((void *) s);
+}
 
 /* Report on a single mount.  */
 static void
@@ -244,11 +249,18 @@ print_one (const struct my_mntent *me) {
        if (me->mnt_opts != NULL)
                printf (" (%s)", me->mnt_opts);
        if (list_with_volumelabel) {
-               const char *label;
-               label = mount_get_volume_label_by_spec(me->mnt_fsname);
-               if (label) {
-                       printf (" [%s]", label);
-                       /* free(label); */
+               const char *devname = fsprobe_get_devname(me->mnt_fsname);
+
+               if (devname) {
+                       const char *label;
+
+                       label = fsprobe_get_label_by_devname(devname);
+                       my_free(devname);
+
+                       if (label) {
+                               printf (" [%s]", label);
+                               my_free(label);
+                       }
                }
        }
        printf ("\n");
@@ -267,12 +279,6 @@ print_all (char *types) {
      exit (0);
 }
 
-static void
-my_free(const void *s) {
-       if (s)
-               free((void *) s);
-}
-
 /* reallocates its first arg */
 static char *
 append_opt(char *s, const char *opt, const char *val)
@@ -1329,7 +1335,7 @@ mount_one (const char *spec, const char *node, const char *types,
        opts = append_opt(opts, cmdlineopts, NULL);
 
        /* Handle possible LABEL= and UUID= forms of spec */
-       nspec = mount_get_devname_for_mounting(spec);
+       nspec = fsprobe_get_devname_for_mounting(spec);
        if (nspec)
                spec = nspec;
 
@@ -1386,7 +1392,7 @@ mounted (const char *spec0, const char *node0) {
        int ret = 0;
 
        /* Handle possible UUID= and LABEL= in spec */
-       spec0 = mount_get_devname(spec0);
+       spec0 = fsprobe_get_devname(spec0);
        if (!spec0)
                return ret;
 
@@ -1668,7 +1674,7 @@ main(int argc, char *argv[]) {
        if (fd > 2)
                close(fd);
 
-       mount_blkid_get_cache();
+       fsprobe_init();
 
 #ifdef DO_PS_FIDDLING
        initproctitle(argc, argv);
@@ -1841,9 +1847,9 @@ main(int argc, char *argv[]) {
 
        if (specseen) {
                if (uuid)
-                       spec = mount_get_devname_by_uuid(uuid);
+                       spec = fsprobe_get_devname_by_uuid(uuid);
                else
-                       spec = mount_get_devname_by_label(volumelabel);
+                       spec = fsprobe_get_devname_by_label(volumelabel);
 
                if (!spec)
                        die (EX_USAGE, _("mount: no such partition found"));
@@ -1921,7 +1927,7 @@ main(int argc, char *argv[]) {
        if (result == EX_SOMEOK)
                result = 0;
 
-       mount_blkid_put_cache();
+       fsprobe_exit();
 
        exit (result);
 }
index 64fe3503a795ab2d5c313b2722df5f9699d813bf..8c3c1bdfef02d5a7cb7074357c263dfbb6c4641c 100644 (file)
@@ -179,7 +179,7 @@ do_swapon(const char *orig_special, int prio) {
        if (verbose)
                printf(_("%s on %s\n"), progname, orig_special);
 
-       special = mount_get_devname(orig_special);
+       special = fsprobe_get_devname(orig_special);
        if (!special) {
                fprintf(stderr, _("%s: cannot find the device for %s\n"),
                        progname, orig_special);
@@ -254,13 +254,13 @@ cannot_find(const char *special) {
 
 static int
 swapon_by_label(const char *label, int prio) {
-       const char *special = mount_get_devname_by_label(label);
+       const char *special = fsprobe_get_devname_by_label(label);
        return special ? do_swapon(special, prio) : cannot_find(label);
 }
 
 static int
 swapon_by_uuid(const char *uuid, int prio) {
-       const char *special = mount_get_devname_by_uuid(uuid);
+       const char *special = fsprobe_get_devname_by_uuid(uuid);
        return special ? do_swapon(special, prio) : cannot_find(uuid);
 }
 
@@ -271,7 +271,7 @@ do_swapoff(const char *orig_special, int quiet) {
        if (verbose)
                printf(_("%s on %s\n"), progname, orig_special);
 
-       special = mount_get_devname(orig_special);
+       special = fsprobe_get_devname(orig_special);
        if (!special)
                return cannot_find(orig_special);
 
@@ -292,13 +292,13 @@ do_swapoff(const char *orig_special, int quiet) {
 
 static int
 swapoff_by_label(const char *label, int quiet) {
-       const char *special = mount_get_devname_by_label(label);
+       const char *special = fsprobe_get_devname_by_label(label);
        return special ? do_swapoff(special, quiet) : cannot_find(label);
 }
 
 static int
 swapoff_by_uuid(const char *uuid, int quiet) {
-       const char *special = mount_get_devname_by_uuid(uuid);
+       const char *special = fsprobe_get_devname_by_uuid(uuid);
        return special ? do_swapoff(special, quiet) : cannot_find(uuid);
 }
 
@@ -327,7 +327,7 @@ swapon_all(void) {
                if (!streq(fstab->mnt_type, MNTTYPE_SWAP))
                        continue;
 
-               special = mount_get_devname(orig_special);
+               special = fsprobe_get_devname(orig_special);
                if (!special)
                        continue;