ui/vc: move VCCharDev specific fields out of QemuConsole
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20230830093843.3531473-17-marcandre.lureau@redhat.com>
This commit is contained in:
parent
4c946b7f97
commit
6505fd8d23
147
ui/console.c
147
ui/console.c
@ -106,10 +106,8 @@ struct QemuConsole {
|
|||||||
int total_height;
|
int total_height;
|
||||||
int backscroll_height;
|
int backscroll_height;
|
||||||
int x, y;
|
int x, y;
|
||||||
int x_saved, y_saved;
|
|
||||||
int y_displayed;
|
int y_displayed;
|
||||||
int y_base;
|
int y_base;
|
||||||
TextAttributes t_attrib; /* currently active text attributes */
|
|
||||||
TextCell *cells;
|
TextCell *cells;
|
||||||
int text_x[2], text_y[2], cursor_invalidate;
|
int text_x[2], text_y[2], cursor_invalidate;
|
||||||
int echo;
|
int echo;
|
||||||
@ -119,10 +117,6 @@ struct QemuConsole {
|
|||||||
int update_x1;
|
int update_x1;
|
||||||
int update_y1;
|
int update_y1;
|
||||||
|
|
||||||
enum TTYState state;
|
|
||||||
int esc_params[MAX_ESC_PARAMS];
|
|
||||||
int nb_esc_params;
|
|
||||||
|
|
||||||
Chardev *chr;
|
Chardev *chr;
|
||||||
/* fifo for key pressed */
|
/* fifo for key pressed */
|
||||||
Fifo8 out_fifo;
|
Fifo8 out_fifo;
|
||||||
@ -134,6 +128,12 @@ struct QemuConsole {
|
|||||||
struct VCChardev {
|
struct VCChardev {
|
||||||
Chardev parent;
|
Chardev parent;
|
||||||
QemuConsole *console;
|
QemuConsole *console;
|
||||||
|
|
||||||
|
enum TTYState state;
|
||||||
|
int esc_params[MAX_ESC_PARAMS];
|
||||||
|
int nb_esc_params;
|
||||||
|
TextAttributes t_attrib; /* currently active text attributes */
|
||||||
|
int x_saved, y_saved;
|
||||||
};
|
};
|
||||||
typedef struct VCChardev VCChardev;
|
typedef struct VCChardev VCChardev;
|
||||||
|
|
||||||
@ -607,93 +607,92 @@ static void vc_put_lf(VCChardev *vc)
|
|||||||
*/
|
*/
|
||||||
static void vc_handle_escape(VCChardev *vc)
|
static void vc_handle_escape(VCChardev *vc)
|
||||||
{
|
{
|
||||||
QemuConsole *s = vc->console;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i=0; i<s->nb_esc_params; i++) {
|
for (i = 0; i < vc->nb_esc_params; i++) {
|
||||||
switch (s->esc_params[i]) {
|
switch (vc->esc_params[i]) {
|
||||||
case 0: /* reset all console attributes to default */
|
case 0: /* reset all console attributes to default */
|
||||||
s->t_attrib = TEXT_ATTRIBUTES_DEFAULT;
|
vc->t_attrib = TEXT_ATTRIBUTES_DEFAULT;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
s->t_attrib.bold = 1;
|
vc->t_attrib.bold = 1;
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
s->t_attrib.uline = 1;
|
vc->t_attrib.uline = 1;
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
s->t_attrib.blink = 1;
|
vc->t_attrib.blink = 1;
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 7:
|
||||||
s->t_attrib.invers = 1;
|
vc->t_attrib.invers = 1;
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 8:
|
||||||
s->t_attrib.unvisible = 1;
|
vc->t_attrib.unvisible = 1;
|
||||||
break;
|
break;
|
||||||
case 22:
|
case 22:
|
||||||
s->t_attrib.bold = 0;
|
vc->t_attrib.bold = 0;
|
||||||
break;
|
break;
|
||||||
case 24:
|
case 24:
|
||||||
s->t_attrib.uline = 0;
|
vc->t_attrib.uline = 0;
|
||||||
break;
|
break;
|
||||||
case 25:
|
case 25:
|
||||||
s->t_attrib.blink = 0;
|
vc->t_attrib.blink = 0;
|
||||||
break;
|
break;
|
||||||
case 27:
|
case 27:
|
||||||
s->t_attrib.invers = 0;
|
vc->t_attrib.invers = 0;
|
||||||
break;
|
break;
|
||||||
case 28:
|
case 28:
|
||||||
s->t_attrib.unvisible = 0;
|
vc->t_attrib.unvisible = 0;
|
||||||
break;
|
break;
|
||||||
/* set foreground color */
|
/* set foreground color */
|
||||||
case 30:
|
case 30:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_BLACK;
|
vc->t_attrib.fgcol = QEMU_COLOR_BLACK;
|
||||||
break;
|
break;
|
||||||
case 31:
|
case 31:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_RED;
|
vc->t_attrib.fgcol = QEMU_COLOR_RED;
|
||||||
break;
|
break;
|
||||||
case 32:
|
case 32:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_GREEN;
|
vc->t_attrib.fgcol = QEMU_COLOR_GREEN;
|
||||||
break;
|
break;
|
||||||
case 33:
|
case 33:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_YELLOW;
|
vc->t_attrib.fgcol = QEMU_COLOR_YELLOW;
|
||||||
break;
|
break;
|
||||||
case 34:
|
case 34:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_BLUE;
|
vc->t_attrib.fgcol = QEMU_COLOR_BLUE;
|
||||||
break;
|
break;
|
||||||
case 35:
|
case 35:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_MAGENTA;
|
vc->t_attrib.fgcol = QEMU_COLOR_MAGENTA;
|
||||||
break;
|
break;
|
||||||
case 36:
|
case 36:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_CYAN;
|
vc->t_attrib.fgcol = QEMU_COLOR_CYAN;
|
||||||
break;
|
break;
|
||||||
case 37:
|
case 37:
|
||||||
s->t_attrib.fgcol = QEMU_COLOR_WHITE;
|
vc->t_attrib.fgcol = QEMU_COLOR_WHITE;
|
||||||
break;
|
break;
|
||||||
/* set background color */
|
/* set background color */
|
||||||
case 40:
|
case 40:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_BLACK;
|
vc->t_attrib.bgcol = QEMU_COLOR_BLACK;
|
||||||
break;
|
break;
|
||||||
case 41:
|
case 41:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_RED;
|
vc->t_attrib.bgcol = QEMU_COLOR_RED;
|
||||||
break;
|
break;
|
||||||
case 42:
|
case 42:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_GREEN;
|
vc->t_attrib.bgcol = QEMU_COLOR_GREEN;
|
||||||
break;
|
break;
|
||||||
case 43:
|
case 43:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_YELLOW;
|
vc->t_attrib.bgcol = QEMU_COLOR_YELLOW;
|
||||||
break;
|
break;
|
||||||
case 44:
|
case 44:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_BLUE;
|
vc->t_attrib.bgcol = QEMU_COLOR_BLUE;
|
||||||
break;
|
break;
|
||||||
case 45:
|
case 45:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_MAGENTA;
|
vc->t_attrib.bgcol = QEMU_COLOR_MAGENTA;
|
||||||
break;
|
break;
|
||||||
case 46:
|
case 46:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_CYAN;
|
vc->t_attrib.bgcol = QEMU_COLOR_CYAN;
|
||||||
break;
|
break;
|
||||||
case 47:
|
case 47:
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_WHITE;
|
vc->t_attrib.bgcol = QEMU_COLOR_WHITE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -725,7 +724,7 @@ static void vc_put_one(VCChardev *vc, int ch)
|
|||||||
y1 = (s->y_base + s->y) % s->total_height;
|
y1 = (s->y_base + s->y) % s->total_height;
|
||||||
c = &s->cells[y1 * s->width + s->x];
|
c = &s->cells[y1 * s->width + s->x];
|
||||||
c->ch = ch;
|
c->ch = ch;
|
||||||
c->t_attrib = s->t_attrib;
|
c->t_attrib = vc->t_attrib;
|
||||||
vc_update_xy(vc, s->x, s->y);
|
vc_update_xy(vc, s->x, s->y);
|
||||||
s->x++;
|
s->x++;
|
||||||
}
|
}
|
||||||
@ -767,7 +766,7 @@ static void vc_putchar(VCChardev *vc, int ch)
|
|||||||
int x, y;
|
int x, y;
|
||||||
char response[40];
|
char response[40];
|
||||||
|
|
||||||
switch(s->state) {
|
switch(vc->state) {
|
||||||
case TTY_STATE_NORM:
|
case TTY_STATE_NORM:
|
||||||
switch(ch) {
|
switch(ch) {
|
||||||
case '\r': /* carriage return */
|
case '\r': /* carriage return */
|
||||||
@ -798,7 +797,7 @@ static void vc_putchar(VCChardev *vc, int ch)
|
|||||||
/* SO (shift out), character set 1 (ignored) */
|
/* SO (shift out), character set 1 (ignored) */
|
||||||
break;
|
break;
|
||||||
case 27: /* esc (introducing an escape sequence) */
|
case 27: /* esc (introducing an escape sequence) */
|
||||||
s->state = TTY_STATE_ESC;
|
vc->state = TTY_STATE_ESC;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
vc_put_one(vc, ch);
|
vc_put_one(vc, ch);
|
||||||
@ -808,71 +807,71 @@ static void vc_putchar(VCChardev *vc, int ch)
|
|||||||
case TTY_STATE_ESC: /* check if it is a terminal escape sequence */
|
case TTY_STATE_ESC: /* check if it is a terminal escape sequence */
|
||||||
if (ch == '[') {
|
if (ch == '[') {
|
||||||
for(i=0;i<MAX_ESC_PARAMS;i++)
|
for(i=0;i<MAX_ESC_PARAMS;i++)
|
||||||
s->esc_params[i] = 0;
|
vc->esc_params[i] = 0;
|
||||||
s->nb_esc_params = 0;
|
vc->nb_esc_params = 0;
|
||||||
s->state = TTY_STATE_CSI;
|
vc->state = TTY_STATE_CSI;
|
||||||
} else {
|
} else {
|
||||||
s->state = TTY_STATE_NORM;
|
vc->state = TTY_STATE_NORM;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case TTY_STATE_CSI: /* handle escape sequence parameters */
|
case TTY_STATE_CSI: /* handle escape sequence parameters */
|
||||||
if (ch >= '0' && ch <= '9') {
|
if (ch >= '0' && ch <= '9') {
|
||||||
if (s->nb_esc_params < MAX_ESC_PARAMS) {
|
if (vc->nb_esc_params < MAX_ESC_PARAMS) {
|
||||||
int *param = &s->esc_params[s->nb_esc_params];
|
int *param = &vc->esc_params[vc->nb_esc_params];
|
||||||
int digit = (ch - '0');
|
int digit = (ch - '0');
|
||||||
|
|
||||||
*param = (*param <= (INT_MAX - digit) / 10) ?
|
*param = (*param <= (INT_MAX - digit) / 10) ?
|
||||||
*param * 10 + digit : INT_MAX;
|
*param * 10 + digit : INT_MAX;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (s->nb_esc_params < MAX_ESC_PARAMS)
|
if (vc->nb_esc_params < MAX_ESC_PARAMS)
|
||||||
s->nb_esc_params++;
|
vc->nb_esc_params++;
|
||||||
if (ch == ';' || ch == '?') {
|
if (ch == ';' || ch == '?') {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
trace_console_putchar_csi(s->esc_params[0], s->esc_params[1],
|
trace_console_putchar_csi(vc->esc_params[0], vc->esc_params[1],
|
||||||
ch, s->nb_esc_params);
|
ch, vc->nb_esc_params);
|
||||||
s->state = TTY_STATE_NORM;
|
vc->state = TTY_STATE_NORM;
|
||||||
switch(ch) {
|
switch(ch) {
|
||||||
case 'A':
|
case 'A':
|
||||||
/* move cursor up */
|
/* move cursor up */
|
||||||
if (s->esc_params[0] == 0) {
|
if (vc->esc_params[0] == 0) {
|
||||||
s->esc_params[0] = 1;
|
vc->esc_params[0] = 1;
|
||||||
}
|
}
|
||||||
vc_set_cursor(vc, s->x, s->y - s->esc_params[0]);
|
vc_set_cursor(vc, s->x, s->y - vc->esc_params[0]);
|
||||||
break;
|
break;
|
||||||
case 'B':
|
case 'B':
|
||||||
/* move cursor down */
|
/* move cursor down */
|
||||||
if (s->esc_params[0] == 0) {
|
if (vc->esc_params[0] == 0) {
|
||||||
s->esc_params[0] = 1;
|
vc->esc_params[0] = 1;
|
||||||
}
|
}
|
||||||
vc_set_cursor(vc, s->x, s->y + s->esc_params[0]);
|
vc_set_cursor(vc, s->x, s->y + vc->esc_params[0]);
|
||||||
break;
|
break;
|
||||||
case 'C':
|
case 'C':
|
||||||
/* move cursor right */
|
/* move cursor right */
|
||||||
if (s->esc_params[0] == 0) {
|
if (vc->esc_params[0] == 0) {
|
||||||
s->esc_params[0] = 1;
|
vc->esc_params[0] = 1;
|
||||||
}
|
}
|
||||||
vc_set_cursor(vc, s->x + s->esc_params[0], s->y);
|
vc_set_cursor(vc, s->x + vc->esc_params[0], s->y);
|
||||||
break;
|
break;
|
||||||
case 'D':
|
case 'D':
|
||||||
/* move cursor left */
|
/* move cursor left */
|
||||||
if (s->esc_params[0] == 0) {
|
if (vc->esc_params[0] == 0) {
|
||||||
s->esc_params[0] = 1;
|
vc->esc_params[0] = 1;
|
||||||
}
|
}
|
||||||
vc_set_cursor(vc, s->x - s->esc_params[0], s->y);
|
vc_set_cursor(vc, s->x - vc->esc_params[0], s->y);
|
||||||
break;
|
break;
|
||||||
case 'G':
|
case 'G':
|
||||||
/* move cursor to column */
|
/* move cursor to column */
|
||||||
vc_set_cursor(vc, s->esc_params[0] - 1, s->y);
|
vc_set_cursor(vc, vc->esc_params[0] - 1, s->y);
|
||||||
break;
|
break;
|
||||||
case 'f':
|
case 'f':
|
||||||
case 'H':
|
case 'H':
|
||||||
/* move cursor to row, column */
|
/* move cursor to row, column */
|
||||||
vc_set_cursor(vc, s->esc_params[1] - 1, s->esc_params[0] - 1);
|
vc_set_cursor(vc, vc->esc_params[1] - 1, vc->esc_params[0] - 1);
|
||||||
break;
|
break;
|
||||||
case 'J':
|
case 'J':
|
||||||
switch (s->esc_params[0]) {
|
switch (vc->esc_params[0]) {
|
||||||
case 0:
|
case 0:
|
||||||
/* clear to end of screen */
|
/* clear to end of screen */
|
||||||
for (y = s->y; y < s->height; y++) {
|
for (y = s->y; y < s->height; y++) {
|
||||||
@ -906,7 +905,7 @@ static void vc_putchar(VCChardev *vc, int ch)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'K':
|
case 'K':
|
||||||
switch (s->esc_params[0]) {
|
switch (vc->esc_params[0]) {
|
||||||
case 0:
|
case 0:
|
||||||
/* clear to eol */
|
/* clear to eol */
|
||||||
for(x = s->x; x < s->width; x++) {
|
for(x = s->x; x < s->width; x++) {
|
||||||
@ -931,7 +930,7 @@ static void vc_putchar(VCChardev *vc, int ch)
|
|||||||
vc_handle_escape(vc);
|
vc_handle_escape(vc);
|
||||||
break;
|
break;
|
||||||
case 'n':
|
case 'n':
|
||||||
switch (s->esc_params[0]) {
|
switch (vc->esc_params[0]) {
|
||||||
case 5:
|
case 5:
|
||||||
/* report console status (always succeed)*/
|
/* report console status (always succeed)*/
|
||||||
vc_respond_str(vc, "\033[0n");
|
vc_respond_str(vc, "\033[0n");
|
||||||
@ -947,13 +946,13 @@ static void vc_putchar(VCChardev *vc, int ch)
|
|||||||
break;
|
break;
|
||||||
case 's':
|
case 's':
|
||||||
/* save cursor position */
|
/* save cursor position */
|
||||||
s->x_saved = s->x;
|
vc->x_saved = s->x;
|
||||||
s->y_saved = s->y;
|
vc->y_saved = s->y;
|
||||||
break;
|
break;
|
||||||
case 'u':
|
case 'u':
|
||||||
/* restore cursor position */
|
/* restore cursor position */
|
||||||
s->x = s->x_saved;
|
s->x = vc->x_saved;
|
||||||
s->y = s->y_saved;
|
s->y = vc->y_saved;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
trace_console_putchar_unhandled(ch);
|
trace_console_putchar_unhandled(ch);
|
||||||
@ -2427,17 +2426,17 @@ static void text_console_do_init(Chardev *chr)
|
|||||||
s->hw = s;
|
s->hw = s;
|
||||||
|
|
||||||
/* set current text attributes to default */
|
/* set current text attributes to default */
|
||||||
s->t_attrib = TEXT_ATTRIBUTES_DEFAULT;
|
drv->t_attrib = TEXT_ATTRIBUTES_DEFAULT;
|
||||||
text_console_resize(s);
|
text_console_resize(s);
|
||||||
|
|
||||||
if (chr->label) {
|
if (chr->label) {
|
||||||
char *msg;
|
char *msg;
|
||||||
|
|
||||||
s->t_attrib.bgcol = QEMU_COLOR_BLUE;
|
drv->t_attrib.bgcol = QEMU_COLOR_BLUE;
|
||||||
msg = g_strdup_printf("%s console\r\n", chr->label);
|
msg = g_strdup_printf("%s console\r\n", chr->label);
|
||||||
qemu_chr_write(chr, (uint8_t *)msg, strlen(msg), true);
|
qemu_chr_write(chr, (uint8_t *)msg, strlen(msg), true);
|
||||||
g_free(msg);
|
g_free(msg);
|
||||||
s->t_attrib = TEXT_ATTRIBUTES_DEFAULT;
|
drv->t_attrib = TEXT_ATTRIBUTES_DEFAULT;
|
||||||
}
|
}
|
||||||
|
|
||||||
qemu_chr_be_event(chr, CHR_EVENT_OPENED);
|
qemu_chr_be_event(chr, CHR_EVENT_OPENED);
|
||||||
|
Loading…
Reference in New Issue
Block a user