hw/dma: Implement a Xilinx CSU DMA model
[qemu/ar7.git] / qobject / qlit.c
blobbe8332136c27211ccec967d6d8061cd631d612a4
1 /*
2 * QLit literal qobject
4 * Copyright IBM, Corp. 2009
5 * Copyright (c) 2013, 2015, 2017 Red Hat Inc.
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Markus Armbruster <armbru@redhat.com>
10 * Marc-André Lureau <marcandre.lureau@redhat.com>
12 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
13 * See the COPYING.LIB file in the top-level directory.
16 #include "qemu/osdep.h"
18 #include "qapi/qmp/qlit.h"
19 #include "qapi/qmp/qbool.h"
20 #include "qapi/qmp/qlist.h"
21 #include "qapi/qmp/qnum.h"
22 #include "qapi/qmp/qdict.h"
23 #include "qapi/qmp/qstring.h"
24 #include "qapi/qmp/qnull.h"
26 static bool qlit_equal_qdict(const QLitObject *lhs, const QDict *qdict)
28 int i;
30 for (i = 0; lhs->value.qdict[i].key; i++) {
31 QObject *obj = qdict_get(qdict, lhs->value.qdict[i].key);
33 if (!qlit_equal_qobject(&lhs->value.qdict[i].value, obj)) {
34 return false;
38 /* Note: the literal qdict must not contain duplicates, this is
39 * considered a programming error and it isn't checked here. */
40 if (qdict_size(qdict) != i) {
41 return false;
44 return true;
47 static bool qlit_equal_qlist(const QLitObject *lhs, const QList *qlist)
49 QListEntry *e;
50 int i = 0;
52 QLIST_FOREACH_ENTRY(qlist, e) {
53 QObject *obj = qlist_entry_obj(e);
55 if (!qlit_equal_qobject(&lhs->value.qlist[i], obj)) {
56 return false;
58 i++;
61 return !e && lhs->value.qlist[i].type == QTYPE_NONE;
64 bool qlit_equal_qobject(const QLitObject *lhs, const QObject *rhs)
66 if (!rhs || lhs->type != qobject_type(rhs)) {
67 return false;
70 switch (lhs->type) {
71 case QTYPE_QBOOL:
72 return lhs->value.qbool == qbool_get_bool(qobject_to(QBool, rhs));
73 case QTYPE_QNUM:
74 return lhs->value.qnum == qnum_get_int(qobject_to(QNum, rhs));
75 case QTYPE_QSTRING:
76 return (strcmp(lhs->value.qstr,
77 qstring_get_str(qobject_to(QString, rhs))) == 0);
78 case QTYPE_QDICT:
79 return qlit_equal_qdict(lhs, qobject_to(QDict, rhs));
80 case QTYPE_QLIST:
81 return qlit_equal_qlist(lhs, qobject_to(QList, rhs));
82 case QTYPE_QNULL:
83 return true;
84 default:
85 break;
88 return false;
91 QObject *qobject_from_qlit(const QLitObject *qlit)
93 switch (qlit->type) {
94 case QTYPE_QNULL:
95 return QOBJECT(qnull());
96 case QTYPE_QNUM:
97 return QOBJECT(qnum_from_int(qlit->value.qnum));
98 case QTYPE_QSTRING:
99 return QOBJECT(qstring_from_str(qlit->value.qstr));
100 case QTYPE_QDICT: {
101 QDict *qdict = qdict_new();
102 QLitDictEntry *e;
104 for (e = qlit->value.qdict; e->key; e++) {
105 qdict_put_obj(qdict, e->key, qobject_from_qlit(&e->value));
107 return QOBJECT(qdict);
109 case QTYPE_QLIST: {
110 QList *qlist = qlist_new();
111 QLitObject *e;
113 for (e = qlit->value.qlist; e->type != QTYPE_NONE; e++) {
114 qlist_append_obj(qlist, qobject_from_qlit(e));
116 return QOBJECT(qlist);
118 case QTYPE_QBOOL:
119 return QOBJECT(qbool_from_bool(qlit->value.qbool));
120 default:
121 assert(0);
124 return NULL;