diff mbox

[01/10] qdict: Add qdict_join()

Message ID 1393860533-2063-2-git-send-email-mreitz@redhat.com
State New
Headers show

Commit Message

Max Reitz March 3, 2014, 3:28 p.m. UTC
This function joins two QDicts by absorbing one into the other.

Signed-off-by: Max Reitz <mreitz@redhat.com>
---
 include/qapi/qmp/qdict.h |  3 +++
 qobject/qdict.c          | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

Comments

Benoît Canet March 5, 2014, 3:55 p.m. UTC | #1
The Monday 03 Mar 2014 à 16:28:44 (+0100), Max Reitz wrote :
> This function joins two QDicts by absorbing one into the other.
> 
> Signed-off-by: Max Reitz <mreitz@redhat.com>
> ---
>  include/qapi/qmp/qdict.h |  3 +++
>  qobject/qdict.c          | 32 ++++++++++++++++++++++++++++++++
>  2 files changed, 35 insertions(+)
> 
> diff --git a/include/qapi/qmp/qdict.h b/include/qapi/qmp/qdict.h
> index 1ddf97b..d68f4eb 100644
> --- a/include/qapi/qmp/qdict.h
> +++ b/include/qapi/qmp/qdict.h
> @@ -16,6 +16,7 @@
>  #include "qapi/qmp/qobject.h"
>  #include "qapi/qmp/qlist.h"
>  #include "qemu/queue.h"
> +#include <stdbool.h>
>  #include <stdint.h>
>  
>  #define QDICT_BUCKET_MAX 512
> @@ -70,4 +71,6 @@ void qdict_flatten(QDict *qdict);
>  void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start);
>  void qdict_array_split(QDict *src, QList **dst);
>  
> +void qdict_join(QDict *dest, QDict *src, bool overwrite);
> +
>  #endif /* QDICT_H */
> diff --git a/qobject/qdict.c b/qobject/qdict.c
> index 42ec4c0..ea239f0 100644
> --- a/qobject/qdict.c
> +++ b/qobject/qdict.c
> @@ -665,3 +665,35 @@ void qdict_array_split(QDict *src, QList **dst)
>          qlist_append_obj(*dst, subqobj ?: QOBJECT(subqdict));
>      }
>  }
> +
> +/**
> + * qdict_join(): Absorb the src QDict into the dest QDict, that is, move all
> + * elements from src to dest.
> + *
> + * If an element from src has a key already present in dest, it will not be
> + * moved unless overwrite is true.
> + *
> + * If overwrite is true, the conflicting values in dest will be discarded and
> + * replaced by the corresponding values from src.
> + *
> + * Therefore, with overwrite being true, the src QDict will always be empty when
> + * this function returns. If overwrite is false, the src QDict will be empty
> + * iff there were no conflicts.
s/iff/if/

> + */
> +void qdict_join(QDict *dest, QDict *src, bool overwrite)
> +{
> +    const QDictEntry *entry, *next;
> +
> +    entry = qdict_first(src);
> +    while (entry) {
> +        next = qdict_next(src, entry);
> +
> +        if (overwrite || !qdict_haskey(dest, entry->key)) {
> +            qobject_incref(entry->value);
> +            qdict_put_obj(dest, entry->key, entry->value);
> +            qdict_del(src, entry->key);
> +        }
> +
> +        entry = next;
> +    }
> +}
> -- 
> 1.9.0
> 
> 
Reviewed-by: Benoit Canet <benoit@irqsave.net>
Kevin Wolf March 5, 2014, 4:01 p.m. UTC | #2
Am 05.03.2014 um 16:55 hat Benoît Canet geschrieben:
> The Monday 03 Mar 2014 à 16:28:44 (+0100), Max Reitz wrote :
> > This function joins two QDicts by absorbing one into the other.
> > 
> > Signed-off-by: Max Reitz <mreitz@redhat.com>
> > ---
> >  include/qapi/qmp/qdict.h |  3 +++
> >  qobject/qdict.c          | 32 ++++++++++++++++++++++++++++++++
> >  2 files changed, 35 insertions(+)
> > 
> > diff --git a/include/qapi/qmp/qdict.h b/include/qapi/qmp/qdict.h
> > index 1ddf97b..d68f4eb 100644
> > --- a/include/qapi/qmp/qdict.h
> > +++ b/include/qapi/qmp/qdict.h
> > @@ -16,6 +16,7 @@
> >  #include "qapi/qmp/qobject.h"
> >  #include "qapi/qmp/qlist.h"
> >  #include "qemu/queue.h"
> > +#include <stdbool.h>
> >  #include <stdint.h>
> >  
> >  #define QDICT_BUCKET_MAX 512
> > @@ -70,4 +71,6 @@ void qdict_flatten(QDict *qdict);
> >  void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start);
> >  void qdict_array_split(QDict *src, QList **dst);
> >  
> > +void qdict_join(QDict *dest, QDict *src, bool overwrite);
> > +
> >  #endif /* QDICT_H */
> > diff --git a/qobject/qdict.c b/qobject/qdict.c
> > index 42ec4c0..ea239f0 100644
> > --- a/qobject/qdict.c
> > +++ b/qobject/qdict.c
> > @@ -665,3 +665,35 @@ void qdict_array_split(QDict *src, QList **dst)
> >          qlist_append_obj(*dst, subqobj ?: QOBJECT(subqdict));
> >      }
> >  }
> > +
> > +/**
> > + * qdict_join(): Absorb the src QDict into the dest QDict, that is, move all
> > + * elements from src to dest.
> > + *
> > + * If an element from src has a key already present in dest, it will not be
> > + * moved unless overwrite is true.
> > + *
> > + * If overwrite is true, the conflicting values in dest will be discarded and
> > + * replaced by the corresponding values from src.
> > + *
> > + * Therefore, with overwrite being true, the src QDict will always be empty when
> > + * this function returns. If overwrite is false, the src QDict will be empty
> > + * iff there were no conflicts.
> s/iff/if/

"iff" means "if and only if" and it seems to be correct here.

Kevin
Benoît Canet March 5, 2014, 4:06 p.m. UTC | #3
The Wednesday 05 Mar 2014 à 17:01:43 (+0100), Kevin Wolf wrote :
> Am 05.03.2014 um 16:55 hat Benoît Canet geschrieben:
> > The Monday 03 Mar 2014 à 16:28:44 (+0100), Max Reitz wrote :
> > > This function joins two QDicts by absorbing one into the other.
> > > 
> > > Signed-off-by: Max Reitz <mreitz@redhat.com>
> > > ---
> > >  include/qapi/qmp/qdict.h |  3 +++
> > >  qobject/qdict.c          | 32 ++++++++++++++++++++++++++++++++
> > >  2 files changed, 35 insertions(+)
> > > 
> > > diff --git a/include/qapi/qmp/qdict.h b/include/qapi/qmp/qdict.h
> > > index 1ddf97b..d68f4eb 100644
> > > --- a/include/qapi/qmp/qdict.h
> > > +++ b/include/qapi/qmp/qdict.h
> > > @@ -16,6 +16,7 @@
> > >  #include "qapi/qmp/qobject.h"
> > >  #include "qapi/qmp/qlist.h"
> > >  #include "qemu/queue.h"
> > > +#include <stdbool.h>
> > >  #include <stdint.h>
> > >  
> > >  #define QDICT_BUCKET_MAX 512
> > > @@ -70,4 +71,6 @@ void qdict_flatten(QDict *qdict);
> > >  void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start);
> > >  void qdict_array_split(QDict *src, QList **dst);
> > >  
> > > +void qdict_join(QDict *dest, QDict *src, bool overwrite);
> > > +
> > >  #endif /* QDICT_H */
> > > diff --git a/qobject/qdict.c b/qobject/qdict.c
> > > index 42ec4c0..ea239f0 100644
> > > --- a/qobject/qdict.c
> > > +++ b/qobject/qdict.c
> > > @@ -665,3 +665,35 @@ void qdict_array_split(QDict *src, QList **dst)
> > >          qlist_append_obj(*dst, subqobj ?: QOBJECT(subqdict));
> > >      }
> > >  }
> > > +
> > > +/**
> > > + * qdict_join(): Absorb the src QDict into the dest QDict, that is, move all
> > > + * elements from src to dest.
> > > + *
> > > + * If an element from src has a key already present in dest, it will not be
> > > + * moved unless overwrite is true.
> > > + *
> > > + * If overwrite is true, the conflicting values in dest will be discarded and
> > > + * replaced by the corresponding values from src.
> > > + *
> > > + * Therefore, with overwrite being true, the src QDict will always be empty when
> > > + * this function returns. If overwrite is false, the src QDict will be empty
> > > + * iff there were no conflicts.
> > s/iff/if/
> 
> "iff" means "if and only if" and it seems to be correct here.

Thanks I didn't knew that I though it was a typo :(

Best regards

Benoît

> 
> Kevin
>
Eric Blake March 5, 2014, 4:52 p.m. UTC | #4
On 03/03/2014 08:28 AM, Max Reitz wrote:
> This function joins two QDicts by absorbing one into the other.
> 
> Signed-off-by: Max Reitz <mreitz@redhat.com>
> ---
>  include/qapi/qmp/qdict.h |  3 +++
>  qobject/qdict.c          | 32 ++++++++++++++++++++++++++++++++
>  2 files changed, 35 insertions(+)
> 

Reviewed-by: Eric Blake <eblake@redhat.com>

However, I think you should expand the testsuite to cover this addition
(can be a followup)
Max Reitz March 5, 2014, 8:13 p.m. UTC | #5
On 05.03.2014 17:52, Eric Blake wrote:
> On 03/03/2014 08:28 AM, Max Reitz wrote:
>> This function joins two QDicts by absorbing one into the other.
>>
>> Signed-off-by: Max Reitz <mreitz@redhat.com>
>> ---
>>   include/qapi/qmp/qdict.h |  3 +++
>>   qobject/qdict.c          | 32 ++++++++++++++++++++++++++++++++
>>   2 files changed, 35 insertions(+)
>>
> Reviewed-by: Eric Blake <eblake@redhat.com>
>
> However, I think you should expand the testsuite to cover this addition
> (can be a followup)

I keep forgetting the tests for QDict... Yes, I'll include it in v2.


Thanks,

Max
diff mbox

Patch

diff --git a/include/qapi/qmp/qdict.h b/include/qapi/qmp/qdict.h
index 1ddf97b..d68f4eb 100644
--- a/include/qapi/qmp/qdict.h
+++ b/include/qapi/qmp/qdict.h
@@ -16,6 +16,7 @@ 
 #include "qapi/qmp/qobject.h"
 #include "qapi/qmp/qlist.h"
 #include "qemu/queue.h"
+#include <stdbool.h>
 #include <stdint.h>
 
 #define QDICT_BUCKET_MAX 512
@@ -70,4 +71,6 @@  void qdict_flatten(QDict *qdict);
 void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start);
 void qdict_array_split(QDict *src, QList **dst);
 
+void qdict_join(QDict *dest, QDict *src, bool overwrite);
+
 #endif /* QDICT_H */
diff --git a/qobject/qdict.c b/qobject/qdict.c
index 42ec4c0..ea239f0 100644
--- a/qobject/qdict.c
+++ b/qobject/qdict.c
@@ -665,3 +665,35 @@  void qdict_array_split(QDict *src, QList **dst)
         qlist_append_obj(*dst, subqobj ?: QOBJECT(subqdict));
     }
 }
+
+/**
+ * qdict_join(): Absorb the src QDict into the dest QDict, that is, move all
+ * elements from src to dest.
+ *
+ * If an element from src has a key already present in dest, it will not be
+ * moved unless overwrite is true.
+ *
+ * If overwrite is true, the conflicting values in dest will be discarded and
+ * replaced by the corresponding values from src.
+ *
+ * Therefore, with overwrite being true, the src QDict will always be empty when
+ * this function returns. If overwrite is false, the src QDict will be empty
+ * iff there were no conflicts.
+ */
+void qdict_join(QDict *dest, QDict *src, bool overwrite)
+{
+    const QDictEntry *entry, *next;
+
+    entry = qdict_first(src);
+    while (entry) {
+        next = qdict_next(src, entry);
+
+        if (overwrite || !qdict_haskey(dest, entry->key)) {
+            qobject_incref(entry->value);
+            qdict_put_obj(dest, entry->key, entry->value);
+            qdict_del(src, entry->key);
+        }
+
+        entry = next;
+    }
+}