Statistics
| Branch: | Revision:

root / monitor.h @ d6f46833

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 "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_VNC_CONNECTED,
25
    QEVENT_VNC_INITIALIZED,
26
    QEVENT_VNC_DISCONNECTED,
27
    QEVENT_BLOCK_IO_ERROR,
28
    QEVENT_RTC_CHANGE,
29
    QEVENT_WATCHDOG,
30
    QEVENT_MAX,
31
} MonitorEvent;
32

    
33
void monitor_protocol_event(MonitorEvent event, QObject *data);
34
void monitor_init(CharDriverState *chr, int flags);
35

    
36
int monitor_suspend(Monitor *mon);
37
void monitor_resume(Monitor *mon);
38

    
39
int monitor_read_bdrv_key_start(Monitor *mon, BlockDriverState *bs,
40
                                BlockDriverCompletionFunc *completion_cb,
41
                                void *opaque);
42

    
43
int monitor_get_fd(Monitor *mon, const char *fdname);
44

    
45
void monitor_vprintf(Monitor *mon, const char *fmt, va_list ap);
46
void monitor_printf(Monitor *mon, const char *fmt, ...)
47
    __attribute__ ((__format__ (__printf__, 2, 3)));
48
void monitor_print_filename(Monitor *mon, const char *filename);
49
void monitor_flush(Monitor *mon);
50

    
51
typedef void (MonitorCompletion)(void *opaque, QObject *ret_data);
52

    
53
void monitor_set_error(Monitor *mon, QError *qerror);
54

    
55
#endif /* !MONITOR_H */