]>
Commit | Line | Data |
---|---|---|
376253ec AL |
1 | #ifndef MONITOR_H |
2 | #define MONITOR_H | |
3 | ||
4 | #include "qemu-common.h" | |
7b1b5d19 | 5 | #include "qapi/qmp/qdict.h" |
737e150e | 6 | #include "block/block.h" |
0150cd81 | 7 | #include "qemu/readline.h" |
376253ec AL |
8 | |
9 | extern Monitor *cur_mon; | |
10 | ||
731b0364 AL |
11 | /* flags for monitor_init */ |
12 | #define MONITOR_IS_DEFAULT 0x01 | |
cde76ee1 | 13 | #define MONITOR_USE_READLINE 0x02 |
418173c7 | 14 | #define MONITOR_USE_CONTROL 0x04 |
39eaab9a | 15 | #define MONITOR_USE_PRETTY 0x08 |
731b0364 | 16 | |
489653b5 | 17 | bool monitor_cur_is_qmp(void); |
6620d3ce | 18 | |
731b0364 | 19 | void monitor_init(CharDriverState *chr, int flags); |
376253ec | 20 | |
cde76ee1 | 21 | int monitor_suspend(Monitor *mon); |
376253ec AL |
22 | void monitor_resume(Monitor *mon); |
23 | ||
0bbc47bb | 24 | int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs, |
097310b5 | 25 | BlockCompletionFunc *completion_cb, |
0bbc47bb | 26 | void *opaque); |
e42e818b | 27 | int monitor_read_block_device_key(Monitor *mon, const char *device, |
097310b5 | 28 | BlockCompletionFunc *completion_cb, |
e42e818b | 29 | void *opaque); |
376253ec | 30 | |
a9940fc4 | 31 | int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp); |
1677f4c6 | 32 | int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp); |
7768e04c | 33 | |
8b7968f7 SW |
34 | void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap) |
35 | GCC_FMT_ATTR(2, 0); | |
e5924d89 | 36 | void monitor_printf(Monitor *mon, const char *fmt, ...) GCC_FMT_ATTR(2, 3); |
376253ec | 37 | void monitor_flush(Monitor *mon); |
b025c8b4 | 38 | int monitor_set_cpu(int cpu_index); |
99b7796f | 39 | int monitor_get_cpu_index(void); |
376253ec | 40 | |
7060b478 | 41 | void monitor_read_command(Monitor *mon, int show_prompt); |
7060b478 AL |
42 | int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func, |
43 | void *opaque); | |
d6f46833 | 44 | |
cff8b2c6 PB |
45 | void object_add(const char *type, const char *id, const QDict *qdict, |
46 | Visitor *v, Error **errp); | |
eb6e8ea5 | 47 | |
e446f70d CB |
48 | AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id, |
49 | bool has_opaque, const char *opaque, | |
50 | Error **errp); | |
adb696f3 CB |
51 | int monitor_fdset_get_fd(int64_t fdset_id, int flags); |
52 | int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd); | |
b3dd1b8c | 53 | void monitor_fdset_dup_fd_remove(int dup_fd); |
adb696f3 CB |
54 | int monitor_fdset_dup_fd_find(int dup_fd); |
55 | ||
376253ec | 56 | #endif /* !MONITOR_H */ |