blob: 68b24c98b0ecf1586a4822afa6f700bd6f51921c [file] [log] [blame]
Michael Roth43c20a42011-07-19 14:50:36 -05001/*
2 * Core Definitions for QAPI/QMP Dispatch
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 * Michael Roth <mdroth@us.ibm.com>
9 *
10 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
11 * See the COPYING.LIB file in the top-level directory.
12 *
13 */
14
Peter Maydellcbf21152016-01-29 17:49:57 +000015#include "qemu/osdep.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010016#include "qapi/qmp/dispatch.h"
Michael Roth43c20a42011-07-19 14:50:36 -050017
Michael Rothabd6cf62011-12-06 22:03:42 -060018static QTAILQ_HEAD(QmpCommandList, QmpCommand) qmp_commands =
Michael Roth43c20a42011-07-19 14:50:36 -050019 QTAILQ_HEAD_INITIALIZER(qmp_commands);
20
Luiz Capitulinod34b8672012-05-08 14:24:44 -030021void qmp_register_command(const char *name, QmpCommandFunc *fn,
22 QmpCommandOptions options)
Michael Roth43c20a42011-07-19 14:50:36 -050023{
Anthony Liguori7267c092011-08-20 22:09:37 -050024 QmpCommand *cmd = g_malloc0(sizeof(*cmd));
Michael Roth43c20a42011-07-19 14:50:36 -050025
26 cmd->name = name;
Michael Roth43c20a42011-07-19 14:50:36 -050027 cmd->fn = fn;
Michael Rothabd6cf62011-12-06 22:03:42 -060028 cmd->enabled = true;
Luiz Capitulinod34b8672012-05-08 14:24:44 -030029 cmd->options = options;
Michael Roth43c20a42011-07-19 14:50:36 -050030 QTAILQ_INSERT_TAIL(&qmp_commands, cmd, node);
31}
32
33QmpCommand *qmp_find_command(const char *name)
34{
Michael Rothabd6cf62011-12-06 22:03:42 -060035 QmpCommand *cmd;
Michael Roth43c20a42011-07-19 14:50:36 -050036
Michael Rothabd6cf62011-12-06 22:03:42 -060037 QTAILQ_FOREACH(cmd, &qmp_commands, node) {
38 if (strcmp(cmd->name, name) == 0) {
39 return cmd;
Michael Roth43c20a42011-07-19 14:50:36 -050040 }
41 }
42 return NULL;
43}
Michael Rothabd6cf62011-12-06 22:03:42 -060044
Michael Rothf22d85e2012-04-17 19:01:45 -050045static void qmp_toggle_command(const char *name, bool enabled)
Michael Rothabd6cf62011-12-06 22:03:42 -060046{
47 QmpCommand *cmd;
48
49 QTAILQ_FOREACH(cmd, &qmp_commands, node) {
50 if (strcmp(cmd->name, name) == 0) {
Michael Rothf22d85e2012-04-17 19:01:45 -050051 cmd->enabled = enabled;
Michael Rothabd6cf62011-12-06 22:03:42 -060052 return;
53 }
54 }
55}
56
Michael Rothf22d85e2012-04-17 19:01:45 -050057void qmp_disable_command(const char *name)
58{
59 qmp_toggle_command(name, false);
60}
61
62void qmp_enable_command(const char *name)
63{
64 qmp_toggle_command(name, true);
65}
66
Mark Wu8dc4d912013-10-09 11:25:07 +080067bool qmp_command_is_enabled(const QmpCommand *cmd)
Michael Rothbf95c0d2011-12-06 22:03:43 -060068{
Mark Wu8dc4d912013-10-09 11:25:07 +080069 return cmd->enabled;
Michael Rothbf95c0d2011-12-06 22:03:43 -060070}
71
Mark Wu8dc4d912013-10-09 11:25:07 +080072const char *qmp_command_name(const QmpCommand *cmd)
73{
74 return cmd->name;
75}
76
Mark Wu0106dc42013-10-09 10:37:26 +080077bool qmp_has_success_response(const QmpCommand *cmd)
78{
79 return !(cmd->options & QCO_NO_SUCCESS_RESP);
80}
81
Mark Wu8dc4d912013-10-09 11:25:07 +080082void qmp_for_each_command(qmp_cmd_callback_fn fn, void *opaque)
Michael Rothabd6cf62011-12-06 22:03:42 -060083{
84 QmpCommand *cmd;
Michael Rothabd6cf62011-12-06 22:03:42 -060085
86 QTAILQ_FOREACH(cmd, &qmp_commands, node) {
Mark Wu8dc4d912013-10-09 11:25:07 +080087 fn(cmd, opaque);
Michael Rothabd6cf62011-12-06 22:03:42 -060088 }
Michael Rothabd6cf62011-12-06 22:03:42 -060089}