]>
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); |
caf15319 | 37 | int monitor_fprintf(FILE *stream, const char *fmt, ...) GCC_FMT_ATTR(2, 3); |
376253ec | 38 | void monitor_flush(Monitor *mon); |
b025c8b4 | 39 | int monitor_set_cpu(int cpu_index); |
99b7796f | 40 | int monitor_get_cpu_index(void); |
376253ec | 41 | |
7060b478 | 42 | void monitor_read_command(Monitor *mon, int show_prompt); |
7060b478 AL |
43 | int monitor_read_password(Monitor *mon, ReadLineFunc *readline_func, |
44 | void *opaque); | |
d6f46833 | 45 | |
e446f70d CB |
46 | AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id, |
47 | bool has_opaque, const char *opaque, | |
48 | Error **errp); | |
adb696f3 CB |
49 | int monitor_fdset_get_fd(int64_t fdset_id, int flags); |
50 | int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd); | |
b3dd1b8c | 51 | void monitor_fdset_dup_fd_remove(int dup_fd); |
adb696f3 CB |
52 | int monitor_fdset_dup_fd_find(int dup_fd); |
53 | ||
376253ec | 54 | #endif /* !MONITOR_H */ |