monitor: Convert do_info_mice() to QObject
Each mouse is represented by a QDict, the returned QObject is a QList of all mice. This commit should not change user output. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
9603ceba2e
commit
e78c48ec4e
@ -44,7 +44,8 @@ struct MouseTransformInfo {
|
|||||||
int a[7];
|
int a[7];
|
||||||
};
|
};
|
||||||
|
|
||||||
void do_info_mice(Monitor *mon);
|
void do_info_mice_print(Monitor *mon, const QObject *data);
|
||||||
|
void do_info_mice(Monitor *mon, QObject **ret_data);
|
||||||
void do_mouse_set(Monitor *mon, const QDict *qdict);
|
void do_mouse_set(Monitor *mon, const QDict *qdict);
|
||||||
|
|
||||||
/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
|
/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
|
||||||
|
@ -2518,7 +2518,8 @@ static const mon_cmd_t info_cmds[] = {
|
|||||||
.args_type = "",
|
.args_type = "",
|
||||||
.params = "",
|
.params = "",
|
||||||
.help = "show which guest mouse is receiving events",
|
.help = "show which guest mouse is receiving events",
|
||||||
.mhandler.info = do_info_mice,
|
.user_print = do_info_mice_print,
|
||||||
|
.mhandler.info_new = do_info_mice,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.name = "vnc",
|
.name = "vnc",
|
||||||
|
64
vl.c
64
vl.c
@ -156,6 +156,7 @@ int main(int argc, char **argv)
|
|||||||
#include "balloon.h"
|
#include "balloon.h"
|
||||||
#include "qemu-option.h"
|
#include "qemu-option.h"
|
||||||
#include "qemu-config.h"
|
#include "qemu-config.h"
|
||||||
|
#include "qemu-objects.h"
|
||||||
|
|
||||||
#include "disas.h"
|
#include "disas.h"
|
||||||
|
|
||||||
@ -490,25 +491,72 @@ int kbd_mouse_is_absolute(void)
|
|||||||
return qemu_put_mouse_event_current->qemu_put_mouse_event_absolute;
|
return qemu_put_mouse_event_current->qemu_put_mouse_event_absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
void do_info_mice(Monitor *mon)
|
static void info_mice_iter(QObject *data, void *opaque)
|
||||||
{
|
{
|
||||||
QEMUPutMouseEntry *cursor;
|
QDict *mouse;
|
||||||
int index = 0;
|
Monitor *mon = opaque;
|
||||||
|
|
||||||
if (!qemu_put_mouse_event_head) {
|
mouse = qobject_to_qdict(data);
|
||||||
|
monitor_printf(mon, "%c Mouse #%" PRId64 ": %s\n",
|
||||||
|
(qdict_get_bool(mouse, "current") ? '*' : ' '),
|
||||||
|
qdict_get_int(mouse, "index"), qdict_get_str(mouse, "name"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void do_info_mice_print(Monitor *mon, const QObject *data)
|
||||||
|
{
|
||||||
|
QList *mice_list;
|
||||||
|
|
||||||
|
mice_list = qobject_to_qlist(data);
|
||||||
|
if (qlist_empty(mice_list)) {
|
||||||
monitor_printf(mon, "No mouse devices connected\n");
|
monitor_printf(mon, "No mouse devices connected\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
monitor_printf(mon, "Mouse devices available:\n");
|
qlist_iter(mice_list, info_mice_iter, mon);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* do_info_mice(): Show VM mice information
|
||||||
|
*
|
||||||
|
* Each mouse is represented by a QDict, the returned QObject is a QList of
|
||||||
|
* all mice.
|
||||||
|
*
|
||||||
|
* The mouse QDict contains the following:
|
||||||
|
*
|
||||||
|
* - "name": mouse's name
|
||||||
|
* - "index": mouse's index
|
||||||
|
* - "current": true if this mouse is receiving events, false otherwise
|
||||||
|
*
|
||||||
|
* Example:
|
||||||
|
*
|
||||||
|
* [ { "name": "QEMU Microsoft Mouse", "index": 0, "current": false },
|
||||||
|
* { "name": "QEMU PS/2 Mouse", "index": 1, "current": true } ]
|
||||||
|
*/
|
||||||
|
void do_info_mice(Monitor *mon, QObject **ret_data)
|
||||||
|
{
|
||||||
|
QEMUPutMouseEntry *cursor;
|
||||||
|
QList *mice_list;
|
||||||
|
int index = 0;
|
||||||
|
|
||||||
|
mice_list = qlist_new();
|
||||||
|
|
||||||
|
if (!qemu_put_mouse_event_head) {
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
cursor = qemu_put_mouse_event_head;
|
cursor = qemu_put_mouse_event_head;
|
||||||
while (cursor != NULL) {
|
while (cursor != NULL) {
|
||||||
monitor_printf(mon, "%c Mouse #%d: %s\n",
|
QObject *obj;
|
||||||
(cursor == qemu_put_mouse_event_current ? '*' : ' '),
|
obj = qobject_from_jsonf("{ 'name': %s, 'index': %d, 'current': %i }",
|
||||||
index, cursor->qemu_put_mouse_event_name);
|
cursor->qemu_put_mouse_event_name,
|
||||||
|
index, cursor == qemu_put_mouse_event_current);
|
||||||
|
qlist_append_obj(mice_list, obj);
|
||||||
index++;
|
index++;
|
||||||
cursor = cursor->next;
|
cursor = cursor->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
out:
|
||||||
|
*ret_data = QOBJECT(mice_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
void do_mouse_set(Monitor *mon, const QDict *qdict)
|
void do_mouse_set(Monitor *mon, const QDict *qdict)
|
||||||
|
Loading…
Reference in New Issue
Block a user