2 * Core Definitions for QAPI/QMP Dispatch
4 * Copyright IBM, Corp. 2011
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
17 #include "qapi/qmp/qobject.h"
18 #include "qapi/qmp/qdict.h"
20 typedef void (QmpCommandFunc)(QDict *, QObject **, Error **);
22 typedef enum QmpCommandOptions
25 QCO_NO_SUCCESS_RESP = 0x1,
28 typedef struct QmpCommand
32 QmpCommandOptions options;
33 QTAILQ_ENTRY(QmpCommand) node;
37 void qmp_register_command(const char *name, QmpCommandFunc *fn,
38 QmpCommandOptions options);
39 QmpCommand *qmp_find_command(const char *name);
40 QObject *qmp_dispatch(QObject *request);
41 void qmp_disable_command(const char *name);
42 void qmp_enable_command(const char *name);
43 bool qmp_command_is_enabled(const QmpCommand *cmd);
44 const char *qmp_command_name(const QmpCommand *cmd);
45 bool qmp_has_success_response(const QmpCommand *cmd);
46 QObject *qmp_build_error_object(Error *err);
47 typedef void (*qmp_cmd_callback_fn)(QmpCommand *cmd, void *opaque);
48 void qmp_for_each_command(qmp_cmd_callback_fn fn, void *opaque);