]> git.proxmox.com Git - mirror_qemu.git/blame - qapi/qmp-core.h
janitor: add guards to headers
[mirror_qemu.git] / qapi / qmp-core.h
CommitLineData
43c20a43
MR
1/*
2 * Core Definitions for QAPI/QMP Dispatch
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
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.
11 *
12 */
13
14#ifndef QMP_CORE_H
15#define QMP_CORE_H
16
17#include "qobject.h"
18#include "qdict.h"
19#include "error.h"
20
21typedef void (QmpCommandFunc)(QDict *, QObject **, Error **);
22
23typedef enum QmpCommandType
24{
25 QCT_NORMAL,
26} QmpCommandType;
27
d34b867d
LC
28typedef enum QmpCommandOptions
29{
30 QCO_NO_OPTIONS = 0x0,
31 QCO_NO_SUCCESS_RESP = 0x1,
32} QmpCommandOptions;
33
43c20a43
MR
34typedef struct QmpCommand
35{
36 const char *name;
37 QmpCommandType type;
38 QmpCommandFunc *fn;
d34b867d 39 QmpCommandOptions options;
43c20a43 40 QTAILQ_ENTRY(QmpCommand) node;
abd6cf6d 41 bool enabled;
43c20a43
MR
42} QmpCommand;
43
d34b867d
LC
44void qmp_register_command(const char *name, QmpCommandFunc *fn,
45 QmpCommandOptions options);
43c20a43 46QmpCommand *qmp_find_command(const char *name);
ab02ab2a 47QObject *qmp_dispatch(QObject *request);
abd6cf6d 48void qmp_disable_command(const char *name);
f22d85e9 49void qmp_enable_command(const char *name);
bf95c0d5 50bool qmp_command_is_enabled(const char *name);
abd6cf6d 51char **qmp_get_command_list(void);
93b91c59 52QObject *qmp_build_error_object(Error *errp);
43c20a43
MR
53
54#endif
ab02ab2a 55