4 #include "qemu-common.h"
11 extern Monitor
*cur_mon
;
12 extern Monitor
*default_mon
;
14 /* flags for monitor_init */
15 #define MONITOR_IS_DEFAULT 0x01
16 #define MONITOR_USE_READLINE 0x02
17 #define MONITOR_USE_CONTROL 0x04
18 #define MONITOR_USE_PRETTY 0x08
20 /* flags for monitor commands */
21 #define MONITOR_CMD_ASYNC 0x0001
24 typedef enum MonitorEvent
{
31 QEVENT_VNC_INITIALIZED
,
32 QEVENT_VNC_DISCONNECTED
,
33 QEVENT_BLOCK_IO_ERROR
,
36 QEVENT_SPICE_CONNECTED
,
37 QEVENT_SPICE_INITIALIZED
,
38 QEVENT_SPICE_DISCONNECTED
,
39 QEVENT_BLOCK_JOB_COMPLETED
,
40 QEVENT_BLOCK_JOB_CANCELLED
,
41 QEVENT_DEVICE_TRAY_MOVED
,
45 /* Add to 'monitor_event_names' array in monitor.c when
46 * defining new events here */
51 int monitor_cur_is_qmp(void);
53 void monitor_protocol_event(MonitorEvent event
, QObject
*data
);
54 void monitor_init(CharDriverState
*chr
, int flags
);
56 int monitor_suspend(Monitor
*mon
);
57 void monitor_resume(Monitor
*mon
);
59 int monitor_read_bdrv_key_start(Monitor
*mon
, BlockDriverState
*bs
,
60 BlockDriverCompletionFunc
*completion_cb
,
62 int monitor_read_block_device_key(Monitor
*mon
, const char *device
,
63 BlockDriverCompletionFunc
*completion_cb
,
66 int monitor_get_fd(Monitor
*mon
, const char *fdname
);
68 void monitor_vprintf(Monitor
*mon
, const char *fmt
, va_list ap
)
70 void monitor_printf(Monitor
*mon
, const char *fmt
, ...) GCC_FMT_ATTR(2, 3);
71 void monitor_print_filename(Monitor
*mon
, const char *filename
);
72 void monitor_flush(Monitor
*mon
);
73 int monitor_set_cpu(int cpu_index
);
74 int monitor_get_cpu_index(void);
76 typedef void (MonitorCompletion
)(void *opaque
, QObject
*ret_data
);
78 void monitor_set_error(Monitor
*mon
, QError
*qerror
);
79 void monitor_read_command(Monitor
*mon
, int show_prompt
);
80 ReadLineState
*monitor_get_rs(Monitor
*mon
);
81 int monitor_read_password(Monitor
*mon
, ReadLineFunc
*readline_func
,
84 int qmp_qom_set(Monitor
*mon
, const QDict
*qdict
, QObject
**ret
);
86 int qmp_qom_get(Monitor
*mon
, const QDict
*qdict
, QObject
**ret
);
88 #endif /* !MONITOR_H */