Statistics
| Branch: | Revision:

root / monitor.h @ 6620d3ce

History | View | Annotate | Download (1.5 kB)

1
#ifndef MONITOR_H
2
#define MONITOR_H
3

    
4
#include "qemu-common.h"
5
#include "qemu-char.h"
6
#include "qemu-error.h"
7
#include "qerror.h"
8
#include "qdict.h"
9
#include "block.h"
10

    
11
extern Monitor *cur_mon;
12
extern Monitor *default_mon;
13

    
14
/* flags for monitor_init */
15
#define MONITOR_IS_DEFAULT    0x01
16
#define MONITOR_USE_READLINE  0x02
17
#define MONITOR_USE_CONTROL   0x04
18

    
19
/* QMP events */
20
typedef enum MonitorEvent {
21
    QEVENT_SHUTDOWN,
22
    QEVENT_RESET,
23
    QEVENT_POWERDOWN,
24
    QEVENT_STOP,
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 */