qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PULL 55/59] qapi/qmp: add ObjectPropertyInfo.default-value


From: Paolo Bonzini
Subject: [PULL 55/59] qapi/qmp: add ObjectPropertyInfo.default-value
Date: Thu, 23 Jan 2020 14:50:45 +0100

From: Marc-André Lureau <address@hidden>

Report the default value associated with a property.

Signed-off-by: Marc-André Lureau <address@hidden>
Message-Id: <address@hidden>
[Report it as type "any", not string. - Paolo]
Signed-off-by: Paolo Bonzini <address@hidden>
---
 qapi/qom.json      | 7 ++++++-
 qom/qom-qmp-cmds.c | 2 ++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/qapi/qom.json b/qapi/qom.json
index 32db96f..1e3c2ad 100644
--- a/qapi/qom.json
+++ b/qapi/qom.json
@@ -26,10 +26,15 @@
 #
 # @description: if specified, the description of the property.
 #
+# @default-value: the default value, if any (since 5.0)
+#
 # Since: 1.2
 ##
 { 'struct': 'ObjectPropertyInfo',
-  'data': { 'name': 'str', 'type': 'str', '*description': 'str' } }
+  'data': { 'name': 'str',
+            'type': 'str',
+            '*description': 'str',
+            '*default-value': 'any' } }
 
 ##
 # @qom-list:
diff --git a/qom/qom-qmp-cmds.c b/qom/qom-qmp-cmds.c
index 8785816..6136efe 100644
--- a/qom/qom-qmp-cmds.c
+++ b/qom/qom-qmp-cmds.c
@@ -177,6 +177,8 @@ ObjectPropertyInfoList *qmp_device_list_properties(const 
char *typename,
         info->type = g_strdup(prop->type);
         info->has_description = !!prop->description;
         info->description = g_strdup(prop->description);
+        info->default_value = qobject_ref(prop->defval);
+        info->has_default_value = !!info->default_value;
 
         entry = g_malloc0(sizeof(*entry));
         entry->value = info;
-- 
1.8.3.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]