123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- /*
- * QEMU System Emulator
- *
- * Copyright (c) 2003-2008 Fabrice Bellard
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- */
- #include "sysemu.h"
- #include "net.h"
- #include "monitor.h"
- #include "console.h"
- #include "error.h"
- #include "qmp-commands.h"
- static QEMUPutKBDEvent *qemu_put_kbd_event;
- static void *qemu_put_kbd_event_opaque;
- static QTAILQ_HEAD(, QEMUPutLEDEntry) led_handlers = QTAILQ_HEAD_INITIALIZER(led_handlers);
- static QTAILQ_HEAD(, QEMUPutMouseEntry) mouse_handlers =
- QTAILQ_HEAD_INITIALIZER(mouse_handlers);
- static NotifierList mouse_mode_notifiers =
- NOTIFIER_LIST_INITIALIZER(mouse_mode_notifiers);
- void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque)
- {
- qemu_put_kbd_event_opaque = opaque;
- qemu_put_kbd_event = func;
- }
- void qemu_remove_kbd_event_handler(void)
- {
- qemu_put_kbd_event_opaque = NULL;
- qemu_put_kbd_event = NULL;
- }
- static void check_mode_change(void)
- {
- static int current_is_absolute, current_has_absolute;
- int is_absolute;
- int has_absolute;
- is_absolute = kbd_mouse_is_absolute();
- has_absolute = kbd_mouse_has_absolute();
- if (is_absolute != current_is_absolute ||
- has_absolute != current_has_absolute) {
- notifier_list_notify(&mouse_mode_notifiers, NULL);
- }
- current_is_absolute = is_absolute;
- current_has_absolute = has_absolute;
- }
- QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
- void *opaque, int absolute,
- const char *name)
- {
- QEMUPutMouseEntry *s;
- static int mouse_index = 0;
- s = g_malloc0(sizeof(QEMUPutMouseEntry));
- s->qemu_put_mouse_event = func;
- s->qemu_put_mouse_event_opaque = opaque;
- s->qemu_put_mouse_event_absolute = absolute;
- s->qemu_put_mouse_event_name = g_strdup(name);
- s->index = mouse_index++;
- QTAILQ_INSERT_TAIL(&mouse_handlers, s, node);
- check_mode_change();
- return s;
- }
- void qemu_activate_mouse_event_handler(QEMUPutMouseEntry *entry)
- {
- QTAILQ_REMOVE(&mouse_handlers, entry, node);
- QTAILQ_INSERT_HEAD(&mouse_handlers, entry, node);
- check_mode_change();
- }
- void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry)
- {
- QTAILQ_REMOVE(&mouse_handlers, entry, node);
- g_free(entry->qemu_put_mouse_event_name);
- g_free(entry);
- check_mode_change();
- }
- QEMUPutLEDEntry *qemu_add_led_event_handler(QEMUPutLEDEvent *func,
- void *opaque)
- {
- QEMUPutLEDEntry *s;
- s = g_malloc0(sizeof(QEMUPutLEDEntry));
- s->put_led = func;
- s->opaque = opaque;
- QTAILQ_INSERT_TAIL(&led_handlers, s, next);
- return s;
- }
- void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry)
- {
- if (entry == NULL)
- return;
- QTAILQ_REMOVE(&led_handlers, entry, next);
- g_free(entry);
- }
- void kbd_put_keycode(int keycode)
- {
- if (!runstate_is_running() && !runstate_check(RUN_STATE_SUSPENDED)) {
- return;
- }
- if (qemu_put_kbd_event) {
- qemu_put_kbd_event(qemu_put_kbd_event_opaque, keycode);
- }
- }
- void kbd_put_ledstate(int ledstate)
- {
- QEMUPutLEDEntry *cursor;
- QTAILQ_FOREACH(cursor, &led_handlers, next) {
- cursor->put_led(cursor->opaque, ledstate);
- }
- }
- void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
- {
- QEMUPutMouseEntry *entry;
- QEMUPutMouseEvent *mouse_event;
- void *mouse_event_opaque;
- int width, height;
- if (!runstate_is_running() && !runstate_check(RUN_STATE_SUSPENDED)) {
- return;
- }
- if (QTAILQ_EMPTY(&mouse_handlers)) {
- return;
- }
- entry = QTAILQ_FIRST(&mouse_handlers);
- mouse_event = entry->qemu_put_mouse_event;
- mouse_event_opaque = entry->qemu_put_mouse_event_opaque;
- if (mouse_event) {
- if (entry->qemu_put_mouse_event_absolute) {
- width = 0x7fff;
- height = 0x7fff;
- } else {
- width = graphic_width - 1;
- height = graphic_height - 1;
- }
- switch (graphic_rotate) {
- case 0:
- mouse_event(mouse_event_opaque,
- dx, dy, dz, buttons_state);
- break;
- case 90:
- mouse_event(mouse_event_opaque,
- width - dy, dx, dz, buttons_state);
- break;
- case 180:
- mouse_event(mouse_event_opaque,
- width - dx, height - dy, dz, buttons_state);
- break;
- case 270:
- mouse_event(mouse_event_opaque,
- dy, height - dx, dz, buttons_state);
- break;
- }
- }
- }
- int kbd_mouse_is_absolute(void)
- {
- if (QTAILQ_EMPTY(&mouse_handlers)) {
- return 0;
- }
- return QTAILQ_FIRST(&mouse_handlers)->qemu_put_mouse_event_absolute;
- }
- int kbd_mouse_has_absolute(void)
- {
- QEMUPutMouseEntry *entry;
- QTAILQ_FOREACH(entry, &mouse_handlers, node) {
- if (entry->qemu_put_mouse_event_absolute) {
- return 1;
- }
- }
- return 0;
- }
- MouseInfoList *qmp_query_mice(Error **errp)
- {
- MouseInfoList *mice_list = NULL;
- QEMUPutMouseEntry *cursor;
- bool current = true;
- QTAILQ_FOREACH(cursor, &mouse_handlers, node) {
- MouseInfoList *info = g_malloc0(sizeof(*info));
- info->value = g_malloc0(sizeof(*info->value));
- info->value->name = g_strdup(cursor->qemu_put_mouse_event_name);
- info->value->index = cursor->index;
- info->value->absolute = !!cursor->qemu_put_mouse_event_absolute;
- info->value->current = current;
- current = false;
- info->next = mice_list;
- mice_list = info;
- }
- return mice_list;
- }
- void do_mouse_set(Monitor *mon, const QDict *qdict)
- {
- QEMUPutMouseEntry *cursor;
- int index = qdict_get_int(qdict, "index");
- int found = 0;
- if (QTAILQ_EMPTY(&mouse_handlers)) {
- monitor_printf(mon, "No mouse devices connected\n");
- return;
- }
- QTAILQ_FOREACH(cursor, &mouse_handlers, node) {
- if (cursor->index == index) {
- found = 1;
- qemu_activate_mouse_event_handler(cursor);
- break;
- }
- }
- if (!found) {
- monitor_printf(mon, "Mouse at given index not found\n");
- }
- check_mode_change();
- }
- void qemu_add_mouse_mode_change_notifier(Notifier *notify)
- {
- notifier_list_add(&mouse_mode_notifiers, notify);
- }
- void qemu_remove_mouse_mode_change_notifier(Notifier *notify)
- {
- notifier_remove(notify);
- }
|