* [Qemu-devel] [PATCH v2] util: add is_equal to UUID API
@ 2017-11-27 12:43 Roman Kagan
2017-11-28 7:49 ` Fam Zheng
0 siblings, 1 reply; 4+ messages in thread
From: Roman Kagan @ 2017-11-27 12:43 UTC (permalink / raw)
To: qemu-devel, Fam Zheng, Thomas Huth, Daniel P. Berrange; +Cc: Denis V. Lunev
It's going to be useful, in particular, in VMBus code massively using
uuids aka GUIDs.
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
---
v1 -> v2:
- drop dedicated testcase (for it was of no value) and incorporate
is_null and is_equal assertions into uuid_generate testcase
include/qemu/uuid.h | 2 ++
tests/test-uuid.c | 8 +++++++-
util/uuid.c | 7 ++++++-
3 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/include/qemu/uuid.h b/include/qemu/uuid.h
index afe4840296..09489ce5c5 100644
--- a/include/qemu/uuid.h
+++ b/include/qemu/uuid.h
@@ -48,6 +48,8 @@ void qemu_uuid_generate(QemuUUID *out);
int qemu_uuid_is_null(const QemuUUID *uu);
+int qemu_uuid_is_equal(const QemuUUID *lhv, const QemuUUID *rhv);
+
void qemu_uuid_unparse(const QemuUUID *uuid, char *out);
char *qemu_uuid_unparse_strdup(const QemuUUID *uuid);
diff --git a/tests/test-uuid.c b/tests/test-uuid.c
index d3a2791fd4..22b4b0727d 100644
--- a/tests/test-uuid.c
+++ b/tests/test-uuid.c
@@ -93,12 +93,18 @@ static inline bool uuid_is_valid(QemuUUID *uuid)
static void test_uuid_generate(void)
{
+ QemuUUID uuid_not_null = { { {
+ 0x58, 0x6e, 0xce, 0x27, 0x7f, 0x09, 0x41, 0xe0,
+ 0x9e, 0x74, 0xe9, 0x01, 0x31, 0x7e, 0x9d, 0x42
+ } } };
QemuUUID uuid;
int i;
for (i = 0; i < 100; ++i) {
qemu_uuid_generate(&uuid);
g_assert(uuid_is_valid(&uuid));
+ g_assert_false(qemu_uuid_is_null(&uuid));
+ g_assert_false(qemu_uuid_is_equal(&uuid_not_null, &uuid));
}
}
@@ -168,8 +174,8 @@ static void test_uuid_unparse_strdup(void)
int main(int argc, char **argv)
{
g_test_init(&argc, &argv, NULL);
- g_test_add_func("/uuid/generate", test_uuid_generate);
g_test_add_func("/uuid/is_null", test_uuid_is_null);
+ g_test_add_func("/uuid/generate", test_uuid_generate);
g_test_add_func("/uuid/parse", test_uuid_parse);
g_test_add_func("/uuid/unparse", test_uuid_unparse);
g_test_add_func("/uuid/unparse_strdup", test_uuid_unparse_strdup);
diff --git a/util/uuid.c b/util/uuid.c
index dd6b5fdf05..ebf06c049a 100644
--- a/util/uuid.c
+++ b/util/uuid.c
@@ -41,7 +41,12 @@ void qemu_uuid_generate(QemuUUID *uuid)
int qemu_uuid_is_null(const QemuUUID *uu)
{
static QemuUUID null_uuid;
- return memcmp(uu, &null_uuid, sizeof(QemuUUID)) == 0;
+ return qemu_uuid_is_equal(uu, &null_uuid);
+}
+
+int qemu_uuid_is_equal(const QemuUUID *lhv, const QemuUUID *rhv)
+{
+ return memcmp(lhv, rhv, sizeof(QemuUUID)) == 0;
}
void qemu_uuid_unparse(const QemuUUID *uuid, char *out)
--
2.14.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2] util: add is_equal to UUID API
2017-11-27 12:43 [Qemu-devel] [PATCH v2] util: add is_equal to UUID API Roman Kagan
@ 2017-11-28 7:49 ` Fam Zheng
2017-12-20 13:54 ` Roman Kagan
0 siblings, 1 reply; 4+ messages in thread
From: Fam Zheng @ 2017-11-28 7:49 UTC (permalink / raw)
To: Roman Kagan; +Cc: qemu-devel, Thomas Huth, Daniel P. Berrange, Denis V. Lunev
On Mon, 11/27 15:43, Roman Kagan wrote:
> It's going to be useful, in particular, in VMBus code massively using
> uuids aka GUIDs.
>
> Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
> ---
> v1 -> v2:
> - drop dedicated testcase (for it was of no value) and incorporate
> is_null and is_equal assertions into uuid_generate testcase
>
> include/qemu/uuid.h | 2 ++
> tests/test-uuid.c | 8 +++++++-
> util/uuid.c | 7 ++++++-
> 3 files changed, 15 insertions(+), 2 deletions(-)
>
> diff --git a/include/qemu/uuid.h b/include/qemu/uuid.h
> index afe4840296..09489ce5c5 100644
> --- a/include/qemu/uuid.h
> +++ b/include/qemu/uuid.h
> @@ -48,6 +48,8 @@ void qemu_uuid_generate(QemuUUID *out);
>
> int qemu_uuid_is_null(const QemuUUID *uu);
>
> +int qemu_uuid_is_equal(const QemuUUID *lhv, const QemuUUID *rhv);
> +
> void qemu_uuid_unparse(const QemuUUID *uuid, char *out);
>
> char *qemu_uuid_unparse_strdup(const QemuUUID *uuid);
> diff --git a/tests/test-uuid.c b/tests/test-uuid.c
> index d3a2791fd4..22b4b0727d 100644
> --- a/tests/test-uuid.c
> +++ b/tests/test-uuid.c
> @@ -93,12 +93,18 @@ static inline bool uuid_is_valid(QemuUUID *uuid)
>
> static void test_uuid_generate(void)
> {
> + QemuUUID uuid_not_null = { { {
> + 0x58, 0x6e, 0xce, 0x27, 0x7f, 0x09, 0x41, 0xe0,
> + 0x9e, 0x74, 0xe9, 0x01, 0x31, 0x7e, 0x9d, 0x42
> + } } };
> QemuUUID uuid;
> int i;
>
> for (i = 0; i < 100; ++i) {
> qemu_uuid_generate(&uuid);
> g_assert(uuid_is_valid(&uuid));
> + g_assert_false(qemu_uuid_is_null(&uuid));
> + g_assert_false(qemu_uuid_is_equal(&uuid_not_null, &uuid));
> }
> }
>
> @@ -168,8 +174,8 @@ static void test_uuid_unparse_strdup(void)
> int main(int argc, char **argv)
> {
> g_test_init(&argc, &argv, NULL);
> - g_test_add_func("/uuid/generate", test_uuid_generate);
> g_test_add_func("/uuid/is_null", test_uuid_is_null);
> + g_test_add_func("/uuid/generate", test_uuid_generate);
> g_test_add_func("/uuid/parse", test_uuid_parse);
> g_test_add_func("/uuid/unparse", test_uuid_unparse);
> g_test_add_func("/uuid/unparse_strdup", test_uuid_unparse_strdup);
> diff --git a/util/uuid.c b/util/uuid.c
> index dd6b5fdf05..ebf06c049a 100644
> --- a/util/uuid.c
> +++ b/util/uuid.c
> @@ -41,7 +41,12 @@ void qemu_uuid_generate(QemuUUID *uuid)
> int qemu_uuid_is_null(const QemuUUID *uu)
> {
> static QemuUUID null_uuid;
> - return memcmp(uu, &null_uuid, sizeof(QemuUUID)) == 0;
> + return qemu_uuid_is_equal(uu, &null_uuid);
> +}
> +
> +int qemu_uuid_is_equal(const QemuUUID *lhv, const QemuUUID *rhv)
> +{
> + return memcmp(lhv, rhv, sizeof(QemuUUID)) == 0;
> }
>
> void qemu_uuid_unparse(const QemuUUID *uuid, char *out)
> --
> 2.14.3
>
Thanks, queued. Will send a pull request once next release dev window opens.
Fam
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2] util: add is_equal to UUID API
2017-11-28 7:49 ` Fam Zheng
@ 2017-12-20 13:54 ` Roman Kagan
2017-12-22 1:17 ` Fam Zheng
0 siblings, 1 reply; 4+ messages in thread
From: Roman Kagan @ 2017-12-20 13:54 UTC (permalink / raw)
To: Fam Zheng; +Cc: qemu-devel, Thomas Huth, Daniel P. Berrange, Denis V. Lunev
On Tue, Nov 28, 2017 at 03:49:46PM +0800, Fam Zheng wrote:
> On Mon, 11/27 15:43, Roman Kagan wrote:
> > It's going to be useful, in particular, in VMBus code massively using
> > uuids aka GUIDs.
> >
> > Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
> > ---
> > v1 -> v2:
> > - drop dedicated testcase (for it was of no value) and incorporate
> > is_null and is_equal assertions into uuid_generate testcase
> >
> > include/qemu/uuid.h | 2 ++
> > tests/test-uuid.c | 8 +++++++-
> > util/uuid.c | 7 ++++++-
> > 3 files changed, 15 insertions(+), 2 deletions(-)
> >
> > diff --git a/include/qemu/uuid.h b/include/qemu/uuid.h
> > index afe4840296..09489ce5c5 100644
> > --- a/include/qemu/uuid.h
> > +++ b/include/qemu/uuid.h
> > @@ -48,6 +48,8 @@ void qemu_uuid_generate(QemuUUID *out);
> >
> > int qemu_uuid_is_null(const QemuUUID *uu);
> >
> > +int qemu_uuid_is_equal(const QemuUUID *lhv, const QemuUUID *rhv);
> > +
> > void qemu_uuid_unparse(const QemuUUID *uuid, char *out);
> >
> > char *qemu_uuid_unparse_strdup(const QemuUUID *uuid);
> > diff --git a/tests/test-uuid.c b/tests/test-uuid.c
> > index d3a2791fd4..22b4b0727d 100644
> > --- a/tests/test-uuid.c
> > +++ b/tests/test-uuid.c
> > @@ -93,12 +93,18 @@ static inline bool uuid_is_valid(QemuUUID *uuid)
> >
> > static void test_uuid_generate(void)
> > {
> > + QemuUUID uuid_not_null = { { {
> > + 0x58, 0x6e, 0xce, 0x27, 0x7f, 0x09, 0x41, 0xe0,
> > + 0x9e, 0x74, 0xe9, 0x01, 0x31, 0x7e, 0x9d, 0x42
> > + } } };
> > QemuUUID uuid;
> > int i;
> >
> > for (i = 0; i < 100; ++i) {
> > qemu_uuid_generate(&uuid);
> > g_assert(uuid_is_valid(&uuid));
> > + g_assert_false(qemu_uuid_is_null(&uuid));
> > + g_assert_false(qemu_uuid_is_equal(&uuid_not_null, &uuid));
> > }
> > }
> >
> > @@ -168,8 +174,8 @@ static void test_uuid_unparse_strdup(void)
> > int main(int argc, char **argv)
> > {
> > g_test_init(&argc, &argv, NULL);
> > - g_test_add_func("/uuid/generate", test_uuid_generate);
> > g_test_add_func("/uuid/is_null", test_uuid_is_null);
> > + g_test_add_func("/uuid/generate", test_uuid_generate);
> > g_test_add_func("/uuid/parse", test_uuid_parse);
> > g_test_add_func("/uuid/unparse", test_uuid_unparse);
> > g_test_add_func("/uuid/unparse_strdup", test_uuid_unparse_strdup);
> > diff --git a/util/uuid.c b/util/uuid.c
> > index dd6b5fdf05..ebf06c049a 100644
> > --- a/util/uuid.c
> > +++ b/util/uuid.c
> > @@ -41,7 +41,12 @@ void qemu_uuid_generate(QemuUUID *uuid)
> > int qemu_uuid_is_null(const QemuUUID *uu)
> > {
> > static QemuUUID null_uuid;
> > - return memcmp(uu, &null_uuid, sizeof(QemuUUID)) == 0;
> > + return qemu_uuid_is_equal(uu, &null_uuid);
> > +}
> > +
> > +int qemu_uuid_is_equal(const QemuUUID *lhv, const QemuUUID *rhv)
> > +{
> > + return memcmp(lhv, rhv, sizeof(QemuUUID)) == 0;
> > }
> >
> > void qemu_uuid_unparse(const QemuUUID *uuid, char *out)
> > --
> > 2.14.3
> >
>
> Thanks, queued. Will send a pull request once next release dev window opens.
Ping?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2] util: add is_equal to UUID API
2017-12-20 13:54 ` Roman Kagan
@ 2017-12-22 1:17 ` Fam Zheng
0 siblings, 0 replies; 4+ messages in thread
From: Fam Zheng @ 2017-12-22 1:17 UTC (permalink / raw)
To: Roman Kagan, qemu-devel, Thomas Huth, Daniel P. Berrange,
Denis V. Lunev
On Wed, 12/20 16:54, Roman Kagan wrote:
> > Thanks, queued. Will send a pull request once next release dev window opens.
>
> Ping?
In master now.
Fam
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-12-22 1:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-27 12:43 [Qemu-devel] [PATCH v2] util: add is_equal to UUID API Roman Kagan
2017-11-28 7:49 ` Fam Zheng
2017-12-20 13:54 ` Roman Kagan
2017-12-22 1:17 ` Fam Zheng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).