2011-07-19 21:50:36 +02:00
|
|
|
/*
|
|
|
|
* Core Definitions for QAPI/QMP Dispatch
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QMP_CORE_H
|
|
|
|
#define QMP_CORE_H
|
|
|
|
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/qmp/qobject.h"
|
|
|
|
#include "qapi/qmp/qdict.h"
|
|
|
|
#include "qapi/error.h"
|
2011-07-19 21:50:36 +02:00
|
|
|
|
|
|
|
typedef void (QmpCommandFunc)(QDict *, QObject **, Error **);
|
|
|
|
|
|
|
|
typedef enum QmpCommandType
|
|
|
|
{
|
|
|
|
QCT_NORMAL,
|
|
|
|
} QmpCommandType;
|
|
|
|
|
2012-05-08 19:24:44 +02:00
|
|
|
typedef enum QmpCommandOptions
|
|
|
|
{
|
|
|
|
QCO_NO_OPTIONS = 0x0,
|
|
|
|
QCO_NO_SUCCESS_RESP = 0x1,
|
|
|
|
} QmpCommandOptions;
|
|
|
|
|
2011-07-19 21:50:36 +02:00
|
|
|
typedef struct QmpCommand
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
QmpCommandType type;
|
|
|
|
QmpCommandFunc *fn;
|
2012-05-08 19:24:44 +02:00
|
|
|
QmpCommandOptions options;
|
2011-07-19 21:50:36 +02:00
|
|
|
QTAILQ_ENTRY(QmpCommand) node;
|
2011-12-07 05:03:42 +01:00
|
|
|
bool enabled;
|
2011-07-19 21:50:36 +02:00
|
|
|
} QmpCommand;
|
|
|
|
|
2012-05-08 19:24:44 +02:00
|
|
|
void qmp_register_command(const char *name, QmpCommandFunc *fn,
|
|
|
|
QmpCommandOptions options);
|
2011-07-19 21:50:36 +02:00
|
|
|
QmpCommand *qmp_find_command(const char *name);
|
2011-07-19 21:50:37 +02:00
|
|
|
QObject *qmp_dispatch(QObject *request);
|
2011-12-07 05:03:42 +01:00
|
|
|
void qmp_disable_command(const char *name);
|
2012-04-18 02:01:45 +02:00
|
|
|
void qmp_enable_command(const char *name);
|
2011-12-07 05:03:43 +01:00
|
|
|
bool qmp_command_is_enabled(const char *name);
|
2011-12-07 05:03:42 +01:00
|
|
|
char **qmp_get_command_list(void);
|
2012-08-01 21:30:13 +02:00
|
|
|
QObject *qmp_build_error_object(Error *errp);
|
2011-07-19 21:50:36 +02:00
|
|
|
|
|
|
|
#endif
|
2011-07-19 21:50:37 +02:00
|
|
|
|