2011-07-19 23:50:36 +04:00
|
|
|
/*
|
|
|
|
* Core Definitions for QAPI/QMP Dispatch
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
* Michael Roth <mdroth@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-29 20:49:57 +03:00
|
|
|
#include "qemu/osdep.h"
|
2012-12-17 21:19:43 +04:00
|
|
|
#include "qapi/qmp/dispatch.h"
|
2011-07-19 23:50:36 +04:00
|
|
|
|
2017-03-03 15:32:25 +03:00
|
|
|
void qmp_register_command(QmpCommandList *cmds, const char *name,
|
|
|
|
QmpCommandFunc *fn, QmpCommandOptions options)
|
2011-07-19 23:50:36 +04:00
|
|
|
{
|
2011-08-21 07:09:37 +04:00
|
|
|
QmpCommand *cmd = g_malloc0(sizeof(*cmd));
|
2011-07-19 23:50:36 +04:00
|
|
|
|
2020-10-05 18:58:50 +03:00
|
|
|
/* QCO_COROUTINE and QCO_ALLOW_OOB are incompatible for now */
|
|
|
|
assert(!((options & QCO_COROUTINE) && (options & QCO_ALLOW_OOB)));
|
|
|
|
|
2011-07-19 23:50:36 +04:00
|
|
|
cmd->name = name;
|
|
|
|
cmd->fn = fn;
|
2011-12-07 08:03:42 +04:00
|
|
|
cmd->enabled = true;
|
2012-05-08 21:24:44 +04:00
|
|
|
cmd->options = options;
|
2017-03-03 15:32:25 +03:00
|
|
|
QTAILQ_INSERT_TAIL(cmds, cmd, node);
|
2011-07-19 23:50:36 +04:00
|
|
|
}
|
|
|
|
|
2020-03-16 20:18:24 +03:00
|
|
|
const QmpCommand *qmp_find_command(const QmpCommandList *cmds, const char *name)
|
2011-07-19 23:50:36 +04:00
|
|
|
{
|
2011-12-07 08:03:42 +04:00
|
|
|
QmpCommand *cmd;
|
2011-07-19 23:50:36 +04:00
|
|
|
|
2017-03-03 15:32:25 +03:00
|
|
|
QTAILQ_FOREACH(cmd, cmds, node) {
|
2011-12-07 08:03:42 +04:00
|
|
|
if (strcmp(cmd->name, name) == 0) {
|
|
|
|
return cmd;
|
2011-07-19 23:50:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-12-07 08:03:42 +04:00
|
|
|
|
2017-03-03 15:32:25 +03:00
|
|
|
static void qmp_toggle_command(QmpCommandList *cmds, const char *name,
|
|
|
|
bool enabled)
|
2011-12-07 08:03:42 +04:00
|
|
|
{
|
|
|
|
QmpCommand *cmd;
|
|
|
|
|
2017-03-03 15:32:25 +03:00
|
|
|
QTAILQ_FOREACH(cmd, cmds, node) {
|
2011-12-07 08:03:42 +04:00
|
|
|
if (strcmp(cmd->name, name) == 0) {
|
2012-04-18 04:01:45 +04:00
|
|
|
cmd->enabled = enabled;
|
2011-12-07 08:03:42 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-03 15:32:25 +03:00
|
|
|
void qmp_disable_command(QmpCommandList *cmds, const char *name)
|
2012-04-18 04:01:45 +04:00
|
|
|
{
|
2017-03-03 15:32:25 +03:00
|
|
|
qmp_toggle_command(cmds, name, false);
|
2012-04-18 04:01:45 +04:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:32:25 +03:00
|
|
|
void qmp_enable_command(QmpCommandList *cmds, const char *name)
|
2012-04-18 04:01:45 +04:00
|
|
|
{
|
2017-03-03 15:32:25 +03:00
|
|
|
qmp_toggle_command(cmds, name, true);
|
2012-04-18 04:01:45 +04:00
|
|
|
}
|
|
|
|
|
2013-10-09 07:25:07 +04:00
|
|
|
bool qmp_command_is_enabled(const QmpCommand *cmd)
|
2011-12-07 08:03:43 +04:00
|
|
|
{
|
2013-10-09 07:25:07 +04:00
|
|
|
return cmd->enabled;
|
|
|
|
}
|
2011-12-07 08:03:43 +04:00
|
|
|
|
2013-10-09 07:25:07 +04:00
|
|
|
const char *qmp_command_name(const QmpCommand *cmd)
|
|
|
|
{
|
|
|
|
return cmd->name;
|
2011-12-07 08:03:43 +04:00
|
|
|
}
|
|
|
|
|
2013-10-09 06:37:26 +04:00
|
|
|
bool qmp_has_success_response(const QmpCommand *cmd)
|
|
|
|
{
|
|
|
|
return !(cmd->options & QCO_NO_SUCCESS_RESP);
|
|
|
|
}
|
|
|
|
|
2020-03-16 20:18:24 +03:00
|
|
|
void qmp_for_each_command(const QmpCommandList *cmds, qmp_cmd_callback_fn fn,
|
2017-03-03 15:32:25 +03:00
|
|
|
void *opaque)
|
2011-12-07 08:03:42 +04:00
|
|
|
{
|
2020-03-16 20:18:24 +03:00
|
|
|
const QmpCommand *cmd;
|
2011-12-07 08:03:42 +04:00
|
|
|
|
2017-03-03 15:32:25 +03:00
|
|
|
QTAILQ_FOREACH(cmd, cmds, node) {
|
2013-10-09 07:25:07 +04:00
|
|
|
fn(cmd, opaque);
|
2011-12-07 08:03:42 +04:00
|
|
|
}
|
|
|
|
}
|