qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 19/36] qmp: implement qmp_query_commands without qmp


From: marcandre . lureau
Subject: [Qemu-devel] [PATCH 19/36] qmp: implement qmp_query_commands without qmp_cmds
Date: Fri, 25 Sep 2015 16:03:47 +0200

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

So we can get rid of the static qmp_cmds table.

Signed-off-by: Marc-André Lureau <address@hidden>
---
 monitor.c | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/monitor.c b/monitor.c
index bfa0329..a2eb228 100644
--- a/monitor.c
+++ b/monitor.c
@@ -850,21 +850,24 @@ static void hmp_info_help(Monitor *mon, const QDict 
*qdict)
     help_cmd(mon, "info");
 }
 
-CommandInfoList *qmp_query_commands(Error **errp)
+static void query_commands_cb(QmpCommand *cmd, void *opaque)
 {
-    CommandInfoList *info, *cmd_list = NULL;
-    const mon_cmd_t *cmd;
+    CommandInfoList *info, **list = opaque;
 
-    for (cmd = qmp_cmds; cmd->name != NULL; cmd++) {
-        info = g_malloc0(sizeof(*info));
-        info->value = g_malloc0(sizeof(*info->value));
-        info->value->name = g_strdup(cmd->name);
+    info = g_malloc0(sizeof(*info));
+    info->value = g_malloc0(sizeof(*info->value));
+    info->value->name = g_strdup(cmd->name);
+    info->next = *list;
+    *list = info;
+}
 
-        info->next = cmd_list;
-        cmd_list = info;
-    }
+CommandInfoList *qmp_query_commands(Error **errp)
+{
+    CommandInfoList *list = NULL;
+
+    qmp_for_each_command(query_commands_cb, &list);
 
-    return cmd_list;
+    return list;
 }
 
 EventInfoList *qmp_query_events(Error **errp)
-- 
2.4.3




reply via email to

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