};
static DisplayState *display_state;
-static QemuConsole *active_console;
static QTAILQ_HEAD(, QemuConsole) consoles =
QTAILQ_HEAD_INITIALIZER(consoles);
void graphic_hw_update(QemuConsole *con)
{
bool async = false;
- con = con ? con : active_console;
if (!con) {
return;
}
void graphic_hw_invalidate(QemuConsole *con)
{
- if (!con) {
- con = active_console;
- }
if (con && con->hw_ops->invalidate) {
con->hw_ops->invalidate(con->hw);
}
void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata)
{
- if (!con) {
- con = active_console;
- }
if (con && con->hw_ops->text_update) {
con->hw_ops->text_update(con->hw, chardata);
}
}
static void displaychangelistener_display_console(DisplayChangeListener *dcl,
- QemuConsole *con,
Error **errp)
{
static const char nodev[] =
"This VM has no graphic display device.";
static DisplaySurface *dummy;
+ QemuConsole *con = dcl->con;
if (!con || !console_compatible_with(con, dcl, errp)) {
if (!dummy) {
}
}
-void console_select(unsigned int index)
-{
- DisplayChangeListener *dcl;
- QemuConsole *s;
-
- trace_console_select(index);
- s = qemu_console_lookup_by_index(index);
- if (s) {
- DisplayState *ds = s->ds;
-
- active_console = s;
- QLIST_FOREACH (dcl, &ds->listeners, next) {
- if (dcl->con != NULL) {
- continue;
- }
- displaychangelistener_display_console(dcl, s, NULL);
- }
-
- if (QEMU_IS_TEXT_CONSOLE(s)) {
- qemu_text_console_select(QEMU_TEXT_CONSOLE(s));
- }
- }
-}
-
void qemu_text_console_put_keysym(QemuTextConsole *s, int keysym)
{
- if (!s) {
- if (!QEMU_IS_TEXT_CONSOLE(active_console)) {
- return;
- }
- s = QEMU_TEXT_CONSOLE(active_console);
- }
-
qemu_text_console_handle_keysym(s, keysym);
}
{
int i;
- if (!active_console || (!QEMU_IS_GRAPHIC_CONSOLE(active_console) &&
- QEMU_IS_GRAPHIC_CONSOLE(c))) {
- active_console = c;
- }
-
if (QTAILQ_EMPTY(&consoles)) {
c->index = 0;
QTAILQ_INSERT_TAIL(&consoles, c, next);
void register_displaychangelistener(DisplayChangeListener *dcl)
{
- QemuConsole *con;
-
assert(!dcl->ds);
trace_displaychangelistener_register(dcl, dcl->ops->dpy_name);
gui_setup_refresh(dcl->ds);
if (dcl->con) {
dcl->con->dcls++;
- con = dcl->con;
- } else {
- con = active_console;
}
- displaychangelistener_display_console(dcl, con, dcl->con ? &error_fatal : NULL);
- if (QEMU_IS_GRAPHIC_CONSOLE(con)) {
- dcl_set_graphic_cursor(dcl, QEMU_GRAPHIC_CONSOLE(con));
+ displaychangelistener_display_console(dcl, &error_fatal);
+ if (QEMU_IS_GRAPHIC_CONSOLE(dcl->con)) {
+ dcl_set_graphic_cursor(dcl, QEMU_GRAPHIC_CONSOLE(dcl->con));
+ } else if (QEMU_IS_TEXT_CONSOLE(dcl->con)) {
+ qemu_text_console_update_size(QEMU_TEXT_CONSOLE(dcl->con));
}
qemu_text_console_update_cursor();
}
bool dpy_ui_info_supported(const QemuConsole *con)
{
- if (con == NULL) {
- con = active_console;
- }
if (con == NULL) {
return false;
}
{
assert(dpy_ui_info_supported(con));
- if (con == NULL) {
- con = active_console;
- }
-
return &con->ui_info;
}
int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info, bool delay)
{
- if (con == NULL) {
- con = active_console;
- }
-
if (!dpy_ui_info_supported(con)) {
return -1;
}
}
dpy_gfx_update_texture(con, con->surface, x, y, w, h);
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gfx_update) {
con->surface = new_surface;
dpy_gfx_create_texture(con, new_surface);
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
displaychangelistener_gfx_switch(dcl, new_surface, surface ? FALSE : TRUE);
return;
}
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_text_cursor) {
return;
}
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_text_update) {
return;
}
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_text_resize) {
return;
}
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (c != (dcl->con ? dcl->con : active_console)) {
+ if (c != dcl->con) {
continue;
}
if (dcl->ops->dpy_mouse_set) {
return;
}
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (c != (dcl->con ? dcl->con : active_console)) {
+ if (c != dcl->con) {
continue;
}
if (dcl->ops->dpy_cursor_define) {
con->scanout.kind = SCANOUT_NONE;
}
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gl_scanout_disable) {
x, y, width, height, d3d_tex2d,
};
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gl_scanout_texture) {
con->scanout.kind = SCANOUT_DMABUF;
con->scanout.dmabuf = dmabuf;
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gl_scanout_dmabuf) {
DisplayChangeListener *dcl;
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gl_cursor_dmabuf) {
DisplayChangeListener *dcl;
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gl_cursor_position) {
DisplayChangeListener *dcl;
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gl_release_dmabuf) {
graphic_hw_gl_block(con, true);
QLIST_FOREACH(dcl, &s->listeners, next) {
- if (con != (dcl->con ? dcl->con : active_console)) {
+ if (con != dcl->con) {
continue;
}
if (dcl->ops->dpy_gl_update) {
QEMUCursor *qemu_console_get_cursor(QemuConsole *con)
{
- if (con == NULL) {
- con = active_console;
- }
return QEMU_IS_GRAPHIC_CONSOLE(con) ? QEMU_GRAPHIC_CONSOLE(con)->cursor : NULL;
}
bool qemu_console_is_visible(QemuConsole *con)
{
- return (con == active_console) || (con->dcls > 0);
+ return con->dcls > 0;
}
bool qemu_console_is_graphic(QemuConsole *con)
{
- if (con == NULL) {
- con = active_console;
- }
return con && QEMU_IS_GRAPHIC_CONSOLE(con);
}
bool qemu_console_is_fixedsize(QemuConsole *con)
{
- if (con == NULL) {
- con = active_console;
- }
return con && (QEMU_IS_GRAPHIC_CONSOLE(con) || QEMU_IS_FIXED_TEXT_CONSOLE(con));
}
int qemu_console_get_index(QemuConsole *con)
{
- if (con == NULL) {
- con = active_console;
- }
return con ? con->index : -1;
}
uint32_t qemu_console_get_head(QemuConsole *con)
{
- if (con == NULL) {
- con = active_console;
- }
if (con == NULL) {
return -1;
}
int qemu_console_get_width(QemuConsole *con, int fallback)
{
- if (con == NULL) {
- con = active_console;
- }
if (con == NULL) {
return fallback;
}
int qemu_console_get_height(QemuConsole *con, int fallback)
{
- if (con == NULL) {
- con = active_console;
- }
if (con == NULL) {
return fallback;
}
static void curses_calc_pad(void)
{
- if (qemu_console_is_fixedsize(NULL)) {
+ if (qemu_console_is_fixedsize(dcl->con)) {
width = gwidth;
height = gheight;
} else {
curs_set(1);
/* it seems that curs_set(1) must always be called before
* curs_set(2) for the latter to have effect */
- if (!qemu_console_is_graphic(NULL)) {
+ if (!qemu_console_is_graphic(dcl->con)) {
curs_set(2);
}
return;
clear();
refresh();
curses_calc_pad();
- graphic_hw_invalidate(NULL);
+ graphic_hw_invalidate(dcl->con);
invalidate = 0;
}
- graphic_hw_text_update(NULL, screen);
+ graphic_hw_text_update(dcl->con, screen);
while (1) {
/* while there are any pending key strokes to process */
/* process keys reserved for qemu */
if (keycode >= QEMU_KEY_CONSOLE0 &&
keycode < QEMU_KEY_CONSOLE0 + 9) {
- erase();
- wnoutrefresh(stdscr);
- console_select(keycode - QEMU_KEY_CONSOLE0);
-
- invalidate = 1;
+ QemuConsole *con = qemu_console_lookup_by_index(keycode - QEMU_KEY_CONSOLE0);
+ if (con) {
+ erase();
+ wnoutrefresh(stdscr);
+ unregister_displaychangelistener(dcl);
+ dcl->con = con;
+ register_displaychangelistener(dcl);
+
+ invalidate = 1;
+ }
continue;
}
}
if (keycode == -1)
continue;
- if (qemu_console_is_graphic(NULL)) {
+ if (qemu_console_is_graphic(dcl->con)) {
/* since terminals don't know about key press and release
* events, we need to emit both for each key received */
if (keycode & SHIFT) {
- qemu_input_event_send_key_number(NULL, SHIFT_CODE, true);
+ qemu_input_event_send_key_number(dcl->con, SHIFT_CODE, true);
qemu_input_event_send_key_delay(0);
}
if (keycode & CNTRL) {
- qemu_input_event_send_key_number(NULL, CNTRL_CODE, true);
+ qemu_input_event_send_key_number(dcl->con, CNTRL_CODE, true);
qemu_input_event_send_key_delay(0);
}
if (keycode & ALT) {
- qemu_input_event_send_key_number(NULL, ALT_CODE, true);
+ qemu_input_event_send_key_number(dcl->con, ALT_CODE, true);
qemu_input_event_send_key_delay(0);
}
if (keycode & ALTGR) {
- qemu_input_event_send_key_number(NULL, GREY | ALT_CODE, true);
+ qemu_input_event_send_key_number(dcl->con, GREY | ALT_CODE, true);
qemu_input_event_send_key_delay(0);
}
- qemu_input_event_send_key_number(NULL, keycode & KEY_MASK, true);
+ qemu_input_event_send_key_number(dcl->con, keycode & KEY_MASK, true);
qemu_input_event_send_key_delay(0);
- qemu_input_event_send_key_number(NULL, keycode & KEY_MASK, false);
+ qemu_input_event_send_key_number(dcl->con, keycode & KEY_MASK, false);
qemu_input_event_send_key_delay(0);
if (keycode & ALTGR) {
- qemu_input_event_send_key_number(NULL, GREY | ALT_CODE, false);
+ qemu_input_event_send_key_number(dcl->con, GREY | ALT_CODE, false);
qemu_input_event_send_key_delay(0);
}
if (keycode & ALT) {
- qemu_input_event_send_key_number(NULL, ALT_CODE, false);
+ qemu_input_event_send_key_number(dcl->con, ALT_CODE, false);
qemu_input_event_send_key_delay(0);
}
if (keycode & CNTRL) {
- qemu_input_event_send_key_number(NULL, CNTRL_CODE, false);
+ qemu_input_event_send_key_number(dcl->con, CNTRL_CODE, false);
qemu_input_event_send_key_delay(0);
}
if (keycode & SHIFT) {
- qemu_input_event_send_key_number(NULL, SHIFT_CODE, false);
+ qemu_input_event_send_key_number(dcl->con, SHIFT_CODE, false);
qemu_input_event_send_key_delay(0);
}
} else {
if (keysym == -1)
keysym = chr;
- qemu_text_console_put_keysym(NULL, keysym);
+ qemu_text_console_put_keysym(QEMU_TEXT_CONSOLE(dcl->con), keysym);
}
}
}
curses_winch_init();
dcl = g_new0(DisplayChangeListener, 1);
+ dcl->con = qemu_console_lookup_default();
dcl->ops = &dcl_ops;
register_displaychangelistener(dcl);