]>
Commit | Line | Data |
---|---|---|
1 | #ifndef MONITOR_H | |
2 | #define MONITOR_H | |
3 | ||
4 | #include "qemu-common.h" | |
5 | #include "qemu-char.h" | |
6 | #include "qerror.h" | |
7 | #include "qdict.h" | |
8 | #include "block.h" | |
9 | ||
10 | extern Monitor *cur_mon; | |
11 | extern Monitor *default_mon; | |
12 | ||
13 | /* flags for monitor_init */ | |
14 | #define MONITOR_IS_DEFAULT 0x01 | |
15 | #define MONITOR_USE_READLINE 0x02 | |
16 | #define MONITOR_USE_CONTROL 0x04 | |
17 | ||
18 | /* QMP events */ | |
19 | typedef enum MonitorEvent { | |
20 | QEVENT_SHUTDOWN, | |
21 | QEVENT_RESET, | |
22 | QEVENT_POWERDOWN, | |
23 | QEVENT_STOP, | |
24 | QEVENT_RESUME, | |
25 | QEVENT_VNC_CONNECTED, | |
26 | QEVENT_VNC_INITIALIZED, | |
27 | QEVENT_VNC_DISCONNECTED, | |
28 | QEVENT_BLOCK_IO_ERROR, | |
29 | QEVENT_RTC_CHANGE, | |
30 | QEVENT_WATCHDOG, | |
31 | QEVENT_MAX, | |
32 | } MonitorEvent; | |
33 | ||
34 | int monitor_cur_is_qmp(void); | |
35 | ||
36 | void monitor_protocol_event(MonitorEvent event, QObject *data); | |
37 | void monitor_init(CharDriverState *chr, int flags); | |
38 | ||
39 | int monitor_suspend(Monitor *mon); | |
40 | void monitor_resume(Monitor *mon); | |
41 | ||
42 | int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs, | |
43 | BlockDriverCompletionFunc *completion_cb, | |
44 | void *opaque); | |
45 | ||
46 | int monitor_get_fd(Monitor *mon, const char *fdname); | |
47 | ||
48 | void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap); | |
49 | void monitor_printf(Monitor *mon, const char *fmt, ...) | |
50 | __attribute__ ((__format__ (__printf__, 2, 3))); | |
51 | void monitor_print_filename(Monitor *mon, const char *filename); | |
52 | void monitor_flush(Monitor *mon); | |
53 | ||
54 | typedef void (MonitorCompletion)(void *opaque, QObject *ret_data); | |
55 | ||
56 | void monitor_set_error(Monitor *mon, QError *qerror); | |
57 | ||
58 | #endif /* !MONITOR_H */ |