2009-03-06 00:01:23 +01:00
|
|
|
#ifndef MONITOR_H
|
|
|
|
#define MONITOR_H
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qemu-char.h"
|
2010-02-17 10:52:26 +01:00
|
|
|
#include "qerror.h"
|
2009-08-28 20:27:11 +02:00
|
|
|
#include "qdict.h"
|
2009-03-06 00:01:23 +01:00
|
|
|
#include "block.h"
|
|
|
|
|
|
|
|
extern Monitor *cur_mon;
|
2010-02-18 11:41:55 +01:00
|
|
|
extern Monitor *default_mon;
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2009-03-06 00:01:42 +01:00
|
|
|
/* flags for monitor_init */
|
|
|
|
#define MONITOR_IS_DEFAULT 0x01
|
2009-03-06 00:01:51 +01:00
|
|
|
#define MONITOR_USE_READLINE 0x02
|
2009-11-27 01:58:51 +01:00
|
|
|
#define MONITOR_USE_CONTROL 0x04
|
2010-06-07 16:42:31 +02:00
|
|
|
#define MONITOR_USE_PRETTY 0x08
|
2009-03-06 00:01:42 +01:00
|
|
|
|
2010-06-16 00:38:39 +02:00
|
|
|
/* flags for monitor commands */
|
|
|
|
#define MONITOR_CMD_ASYNC 0x0001
|
|
|
|
|
2009-11-27 01:59:03 +01:00
|
|
|
/* QMP events */
|
|
|
|
typedef enum MonitorEvent {
|
2009-12-04 19:05:45 +01:00
|
|
|
QEVENT_SHUTDOWN,
|
|
|
|
QEVENT_RESET,
|
|
|
|
QEVENT_POWERDOWN,
|
|
|
|
QEVENT_STOP,
|
2010-04-28 01:35:59 +02:00
|
|
|
QEVENT_RESUME,
|
QMP: Introduce VNC_CONNECTED event
It's emitted when a VNC client connects to QEMU, client's information
such as port and IP address are provided.
Note that this event is emitted right when the connection is
established. This means that it happens before authentication
procedure and session initialization.
Event example:
{ "event": "VNC_CONNECTED",
"timestamp": { "seconds": 1262976601, "microseconds": 975795 },
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0" },
"client": { "family": "ipv4", "service": "58425",
"host": "127.0.0.1" } } }
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-01-14 17:50:57 +01:00
|
|
|
QEVENT_VNC_CONNECTED,
|
QMP: Introduce VNC_INITIALIZED event
It's emitted when a VNC client session is activated by QEMU,
client's information such as port, IP and auth ID (if the
session is authenticated) are provided.
Event example:
{ "event": "VNC_INITIALIZED",
"timestamp": {"seconds": 1263475302, "microseconds": 150772},
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0"},
"client": { "family": "ipv4", "service": "46089",
"host": "127.0.0.1", "sasl_username": "lcapitulino" } } }
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-01-14 17:50:59 +01:00
|
|
|
QEVENT_VNC_INITIALIZED,
|
QMP: Introduce VNC_DISCONNECTED event
It's emitted when a VNC client disconnects from QEMU, client's
information such as port and IP address are provided.
Event example:
{ "event": "VNC_DISCONNECTED",
"timestamp": { "seconds": 1262976601, "microseconds": 975795 },
"data": {
"server": { "auth": "sasl", "family": "ipv4",
"service": "5901", "host": "0.0.0.0" },
"client": { "family": "ipv4", "service": "58425",
"host": "127.0.0.1", "sasl_username": "foo" } } }
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
2010-01-14 17:50:58 +01:00
|
|
|
QEVENT_VNC_DISCONNECTED,
|
2010-02-03 15:41:00 +01:00
|
|
|
QEVENT_BLOCK_IO_ERROR,
|
2010-02-25 16:11:44 +01:00
|
|
|
QEVENT_RTC_CHANGE,
|
2010-02-25 16:13:04 +01:00
|
|
|
QEVENT_WATCHDOG,
|
2010-10-11 18:03:51 +02:00
|
|
|
QEVENT_SPICE_CONNECTED,
|
|
|
|
QEVENT_SPICE_INITIALIZED,
|
|
|
|
QEVENT_SPICE_DISCONNECTED,
|
2009-12-04 19:05:45 +01:00
|
|
|
QEVENT_MAX,
|
2009-11-27 01:59:03 +01:00
|
|
|
} MonitorEvent;
|
|
|
|
|
2010-02-11 17:05:43 +01:00
|
|
|
int monitor_cur_is_qmp(void);
|
|
|
|
|
2009-11-27 01:59:03 +01:00
|
|
|
void monitor_protocol_event(MonitorEvent event, QObject *data);
|
2009-03-06 00:01:42 +01:00
|
|
|
void monitor_init(CharDriverState *chr, int flags);
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2009-03-06 00:01:51 +01:00
|
|
|
int monitor_suspend(Monitor *mon);
|
2009-03-06 00:01:23 +01:00
|
|
|
void monitor_resume(Monitor *mon);
|
|
|
|
|
2010-02-11 02:50:01 +01:00
|
|
|
int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
|
|
|
|
BlockDriverCompletionFunc *completion_cb,
|
|
|
|
void *opaque);
|
2009-03-06 00:01:23 +01:00
|
|
|
|
2009-07-22 10:11:41 +02:00
|
|
|
int monitor_get_fd(Monitor *mon, const char *fdname);
|
|
|
|
|
2010-09-23 21:28:05 +02:00
|
|
|
void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap)
|
|
|
|
GCC_FMT_ATTR(2, 0);
|
2010-09-23 21:28:03 +02:00
|
|
|
void monitor_printf(Monitor *mon, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
|
2009-03-06 00:01:23 +01:00
|
|
|
void monitor_print_filename(Monitor *mon, const char *filename);
|
|
|
|
void monitor_flush(Monitor *mon);
|
|
|
|
|
2010-01-25 19:18:44 +01:00
|
|
|
typedef void (MonitorCompletion)(void *opaque, QObject *ret_data);
|
|
|
|
|
2010-02-17 10:52:26 +01:00
|
|
|
void monitor_set_error(Monitor *mon, QError *qerror);
|
|
|
|
|
2009-03-06 00:01:23 +01:00
|
|
|
#endif /* !MONITOR_H */
|