2 * Core Definitions for QAPI/QMP Dispatch
4 * Copyright IBM, Corp. 2011
7 * Anthony Liguori <aliguori@us.ibm.com>
8 * Michael Roth <mdroth@us.ibm.com>
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.
15 #include "qemu/osdep.h"
16 #include "qapi/qmp/dispatch.h"
18 void qmp_register_command(QmpCommandList
*cmds
, const char *name
,
19 QmpCommandFunc
*fn
, QmpCommandOptions options
)
21 QmpCommand
*cmd
= g_malloc0(sizeof(*cmd
));
26 cmd
->options
= options
;
27 QTAILQ_INSERT_TAIL(cmds
, cmd
, node
);
30 void qmp_unregister_command(QmpCommandList
*cmds
, const char *name
)
32 QmpCommand
*cmd
= qmp_find_command(cmds
, name
);
34 QTAILQ_REMOVE(cmds
, cmd
, node
);
38 QmpCommand
*qmp_find_command(QmpCommandList
*cmds
, const char *name
)
42 QTAILQ_FOREACH(cmd
, cmds
, node
) {
43 if (strcmp(cmd
->name
, name
) == 0) {
50 static void qmp_toggle_command(QmpCommandList
*cmds
, const char *name
,
55 QTAILQ_FOREACH(cmd
, cmds
, node
) {
56 if (strcmp(cmd
->name
, name
) == 0) {
57 cmd
->enabled
= enabled
;
63 void qmp_disable_command(QmpCommandList
*cmds
, const char *name
)
65 qmp_toggle_command(cmds
, name
, false);
68 void qmp_enable_command(QmpCommandList
*cmds
, const char *name
)
70 qmp_toggle_command(cmds
, name
, true);
73 bool qmp_command_is_enabled(const QmpCommand
*cmd
)
78 const char *qmp_command_name(const QmpCommand
*cmd
)
83 bool qmp_has_success_response(const QmpCommand
*cmd
)
85 return !(cmd
->options
& QCO_NO_SUCCESS_RESP
);
88 void qmp_for_each_command(QmpCommandList
*cmds
, qmp_cmd_callback_fn fn
,
93 QTAILQ_FOREACH(cmd
, cmds
, node
) {