chiark / gitweb /
volume_id: merge util.h in libvolume_id-private.h
authorKay Sievers <kay.sievers@vrfy.org>
Wed, 10 Sep 2008 00:31:11 +0000 (02:31 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Wed, 10 Sep 2008 00:31:11 +0000 (02:31 +0200)
configure.ac
extras/volume_id/lib/Makefile.am
extras/volume_id/lib/libvolume_id-private.h
extras/volume_id/lib/util.h [deleted file]

index 0555ccbfe9b8003dbe18d8726872e1c8bdf15b26..c24da97a3bec4d34a71a4100ba4babb06fb6745a 100644 (file)
@@ -19,7 +19,7 @@ AC_SUBST(LIBUDEV_LT_AGE)
 
 dnl /* libvolume_id version */
 VOLID_LT_CURRENT=1
 
 dnl /* libvolume_id version */
 VOLID_LT_CURRENT=1
-VOLID_LT_REVISION=0
+VOLID_LT_REVISION=1
 VOLID_LT_AGE=0
 AC_SUBST(VOLID_LT_CURRENT)
 AC_SUBST(VOLID_LT_REVISION)
 VOLID_LT_AGE=0
 AC_SUBST(VOLID_LT_CURRENT)
 AC_SUBST(VOLID_LT_REVISION)
index c5198aba9a2b069f21f13721894c80139d205da3..59a5ac990b1ed7b63006e7bfa5ccb3a3ad650562 100644 (file)
@@ -8,7 +8,6 @@ include_HEADERS =\
 libvolume_id_la_SOURCES =\
        libvolume_id-private.h \
        volume_id.c \
 libvolume_id_la_SOURCES =\
        libvolume_id-private.h \
        volume_id.c \
-       util.h \
        util.c \
        md5.h \
        md5.c \
        util.c \
        md5.h \
        md5.c \
index c9afaf94e798223f87f159485c58f3936551b100..3b5c083a8849d4031135a29b212bb3c8cb531763 100644 (file)
 
 #include <stdint.h>
 #include <stddef.h>
 
 #include <stdint.h>
 #include <stddef.h>
+#include <endian.h>
+#include <byteswap.h>
+#include <syslog.h>
 
 #include "libvolume_id.h"
 
 
 #include "libvolume_id.h"
 
-#define VOLUME_ID_LABEL_SIZE           64
-#define VOLUME_ID_UUID_SIZE            36
-#define VOLUME_ID_FORMAT_SIZE          32
-#define VOLUME_ID_PATH_MAX             256
-#define VOLUME_ID_PARTITIONS_MAX       256
+#define ALLOWED_CHARS                  "#+-.:=@_"
+
+#ifndef PACKED
+#define PACKED                         __attribute__((packed))
+#endif
+
+#define err(format, arg...)    volume_id_log_fn(LOG_ERR, __FILE__, __LINE__, format, ##arg)
+#define info(format, arg...)   volume_id_log_fn(LOG_INFO, __FILE__, __LINE__, format, ##arg)
+#ifdef DEBUG
+#define dbg(format, arg...)    volume_id_log_fn(LOG_DEBUG, __FILE__, __LINE__, format, ##arg)
+#else
+#define dbg(format, arg...)    do { } while (0)
+#endif
+
+#if (__BYTE_ORDER == __LITTLE_ENDIAN)
+#define le16_to_cpu(x) (x)
+#define le32_to_cpu(x) (x)
+#define le64_to_cpu(x) (x)
+#define be16_to_cpu(x) bswap_16(x)
+#define be32_to_cpu(x) bswap_32(x)
+#define cpu_to_le16(x) (x)
+#define cpu_to_le32(x) (x)
+#define cpu_to_be32(x) bswap_32(x)
+#elif (__BYTE_ORDER == __BIG_ENDIAN)
+#define le16_to_cpu(x) bswap_16(x)
+#define le32_to_cpu(x) bswap_32(x)
+#define le64_to_cpu(x) bswap_64(x)
+#define be16_to_cpu(x) (x)
+#define be32_to_cpu(x) (x)
+#define cpu_to_le16(x) bswap_16(x)
+#define cpu_to_le32(x) bswap_32(x)
+#define cpu_to_be32(x) (x)
+#endif /* __BYTE_ORDER */
+
+enum uuid_format {
+       UUID_STRING,
+       UUID_HEX_STRING,
+       UUID_DCE,
+       UUID_DOS,
+       UUID_64BIT_LE,
+       UUID_MD,
+       UUID_LVM,
+};
+
+enum endian {
+       LE = 0,
+       BE = 1
+};
+
+#define VOLUME_ID_LABEL_SIZE                   64
+#define VOLUME_ID_UUID_SIZE                    36
+#define VOLUME_ID_FORMAT_SIZE                  32
+#define VOLUME_ID_PATH_MAX                     256
+#define VOLUME_ID_PARTITIONS_MAX               256
+
+/* size of superblock buffer, reiserfs block is at 64k */
+#define SB_BUFFER_SIZE                         0x11000
+/* size of seek buffer, FAT cluster is 32k max */
+#define SEEK_BUFFER_SIZE                       0x10000
 
 enum volume_id_usage {
        VOLUME_ID_UNUSED,
 
 enum volume_id_usage {
        VOLUME_ID_UNUSED,
@@ -52,6 +109,17 @@ struct volume_id {
        size_t          seekbuf_len;
 };
 
        size_t          seekbuf_len;
 };
 
+/* utils */
+extern int volume_id_utf8_encoded_valid_unichar(const char *str);
+extern size_t volume_id_set_unicode16(uint8_t *str, size_t len, const uint8_t *buf, enum endian endianess, size_t count);
+extern void volume_id_set_usage(struct volume_id *id, enum volume_id_usage usage_id);
+extern void volume_id_set_label_raw(struct volume_id *id, const uint8_t *buf, size_t count);
+extern void volume_id_set_label_string(struct volume_id *id, const uint8_t *buf, size_t count);
+extern void volume_id_set_label_unicode16(struct volume_id *id, const uint8_t *buf, enum endian endianess, size_t count);
+extern void volume_id_set_uuid(struct volume_id *id, const uint8_t *buf, size_t len, enum uuid_format format);
+extern uint8_t *volume_id_get_buffer(struct volume_id *id, uint64_t off, size_t len);
+extern void volume_id_free_buffer(struct volume_id *id);
+
 /* filesystems */
 extern int volume_id_probe_cramfs(struct volume_id *id, uint64_t off, uint64_t size);
 extern int volume_id_probe_ext(struct volume_id *id, uint64_t off, uint64_t size);
 /* filesystems */
 extern int volume_id_probe_cramfs(struct volume_id *id, uint64_t off, uint64_t size);
 extern int volume_id_probe_ext(struct volume_id *id, uint64_t off, uint64_t size);
diff --git a/extras/volume_id/lib/util.h b/extras/volume_id/lib/util.h
deleted file mode 100644 (file)
index fe0b56b..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * volume_id - reads filesystem label and uuid
- *
- * Copyright (C) 2005-2006 Kay Sievers <kay.sievers@vrfy.org>
- *
- *     This program is free software; you can redistribute it and/or modify it
- *     under the terms of the GNU General Public License as published by the
- *     Free Software Foundation version 2 of the License.
- */
-
-#ifndef _VOLUME_ID_UTIL_
-#define _VOLUME_ID_UTIL_
-
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE 1
-#endif
-
-#ifdef HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
-#include <endian.h>
-#include <byteswap.h>
-#include <syslog.h>
-
-#define ALLOWED_CHARS                          "#+-.:=@_"
-
-#ifndef PACKED
-#define PACKED                         __attribute__((packed))
-#endif
-
-#define err(format, arg...)    volume_id_log_fn(LOG_ERR, __FILE__, __LINE__, format, ##arg)
-#define info(format, arg...)   volume_id_log_fn(LOG_INFO, __FILE__, __LINE__, format, ##arg)
-#ifdef DEBUG
-#define dbg(format, arg...)    volume_id_log_fn(LOG_DEBUG, __FILE__, __LINE__, format, ##arg)
-#else
-#define dbg(format, arg...)    do { } while (0)
-#endif
-
-/* size of superblock buffer, reiserfs block is at 64k */
-#define SB_BUFFER_SIZE                         0x11000
-/* size of seek buffer, FAT cluster is 32k max */
-#define SEEK_BUFFER_SIZE                       0x10000
-
-#ifdef __BYTE_ORDER
-#if (__BYTE_ORDER == __LITTLE_ENDIAN)
-#define le16_to_cpu(x) (x)
-#define le32_to_cpu(x) (x)
-#define le64_to_cpu(x) (x)
-#define be16_to_cpu(x) bswap_16(x)
-#define be32_to_cpu(x) bswap_32(x)
-#define cpu_to_le16(x) (x)
-#define cpu_to_le32(x) (x)
-#define cpu_to_be32(x) bswap_32(x)
-#elif (__BYTE_ORDER == __BIG_ENDIAN)
-#define le16_to_cpu(x) bswap_16(x)
-#define le32_to_cpu(x) bswap_32(x)
-#define le64_to_cpu(x) bswap_64(x)
-#define be16_to_cpu(x) (x)
-#define be32_to_cpu(x) (x)
-#define cpu_to_le16(x) bswap_16(x)
-#define cpu_to_le32(x) bswap_32(x)
-#define cpu_to_be32(x) (x)
-#endif
-#endif /* __BYTE_ORDER */
-
-enum uuid_format {
-       UUID_STRING,
-       UUID_HEX_STRING,
-       UUID_DCE,
-       UUID_DOS,
-       UUID_64BIT_LE,
-       UUID_MD,
-       UUID_LVM,
-};
-
-enum endian {
-       LE = 0,
-       BE = 1
-};
-
-extern int volume_id_utf8_encoded_valid_unichar(const char *str);
-extern size_t volume_id_set_unicode16(uint8_t *str, size_t len, const uint8_t *buf, enum endian endianess, size_t count);
-extern void volume_id_set_usage(struct volume_id *id, enum volume_id_usage usage_id);
-extern void volume_id_set_label_raw(struct volume_id *id, const uint8_t *buf, size_t count);
-extern void volume_id_set_label_string(struct volume_id *id, const uint8_t *buf, size_t count);
-extern void volume_id_set_label_unicode16(struct volume_id *id, const uint8_t *buf, enum endian endianess, size_t count);
-extern void volume_id_set_uuid(struct volume_id *id, const uint8_t *buf, size_t len, enum uuid_format format);
-extern uint8_t *volume_id_get_buffer(struct volume_id *id, uint64_t off, size_t len);
-extern void volume_id_free_buffer(struct volume_id *id);
-
-#endif /* _VOLUME_ID_UTIL_ */