diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-11-26 22:58:58 -0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:22 -0600 |
commit | 9b57c02e3e14163b576ada77ddd1d7b346a6e421 (patch) | |
tree | 088fe8d6eccd145416c3a5c9e8f4cd8753c64f11 /monitor.c | |
parent | 4b9d46834de8c75c3cbd5bc1c5f00e35c74e01ed (diff) |
QMP: Initial support
This commit adds initial QMP support in QEMU. It's important
to notice that most QMP code will be part of the Monitor.
Input will be read by monitor_control_read(). Currently it
does nothing but next patches will add proper input support.
The function monitor_json_emitter(), as its name implies, is
used by the Monitor to emit JSON output. In this commit it's
used by monitor_control_event() to print our greeting message.
Finally, control mode support is also added to monitor_init(),
allowing QMP to be really enabled.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 53 |
1 files changed, 51 insertions, 2 deletions
@@ -50,6 +50,7 @@ #include "qdict.h" #include "qstring.h" #include "qerror.h" +#include "qjson.h" //#define DEBUG //#define DEBUG_COMPLETION @@ -255,6 +256,17 @@ static void monitor_print_qobject(Monitor *mon, const QObject *data) monitor_puts(mon, "\n"); } +static void monitor_json_emitter(Monitor *mon, const QObject *data) +{ + QString *json; + + json = qobject_to_json(data); + assert(json != NULL); + + monitor_printf(mon, "%s\n", qstring_get_str(json)); + QDECREF(json); +} + static int compare_cmd(const char *name, const char *list) { const char *p, *pstart; @@ -3494,6 +3506,20 @@ static int monitor_can_read(void *opaque) return (mon->suspend_cnt == 0) ? 128 : 0; } +/** + * monitor_control_read(): Read and handle QMP input + */ +static void monitor_control_read(void *opaque, const uint8_t *buf, int size) +{ + Monitor *old_mon = cur_mon; + + cur_mon = opaque; + + // TODO: read QMP input + + cur_mon = old_mon; +} + static void monitor_read(void *opaque, const uint8_t *buf, int size) { Monitor *old_mon = cur_mon; @@ -3537,6 +3563,23 @@ void monitor_resume(Monitor *mon) readline_show_prompt(mon->rs); } +/** + * monitor_control_event(): Print QMP gretting + */ +static void monitor_control_event(void *opaque, int event) +{ + if (event == CHR_EVENT_OPENED) { + QObject *data; + Monitor *mon = opaque; + + data = qobject_from_jsonf("{ 'QMP': { 'capabilities': [] } }"); + assert(data != NULL); + + monitor_json_emitter(mon, data); + qobject_decref(data); + } +} + static void monitor_event(void *opaque, int event) { Monitor *mon = opaque; @@ -3623,8 +3666,14 @@ void monitor_init(CharDriverState *chr, int flags) monitor_read_command(mon, 0); } - qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, monitor_event, - mon); + if (monitor_ctrl_mode(mon)) { + /* Control mode requires special handlers */ + qemu_chr_add_handlers(chr, monitor_can_read, monitor_control_read, + monitor_control_event, mon); + } else { + qemu_chr_add_handlers(chr, monitor_can_read, monitor_read, + monitor_event, mon); + } QLIST_INSERT_HEAD(&mon_list, mon, entry); if (!cur_mon || (flags & MONITOR_IS_DEFAULT)) |