qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5,6n
@ 2016-03-06 10:36 Ren Kimura
  2016-03-08  9:40 ` [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5, 6n Gerd Hoffmann
  0 siblings, 1 reply; 3+ messages in thread
From: Ren Kimura @ 2016-03-06 10:36 UTC (permalink / raw)
  To: kraxel; +Cc: qemu-devel

Add support of escape sequence "\e[5n" and "\e[6n" to console.
"\e[5n" reports status of console and it always succeed
in virtual console.
"\e[6n" reports now cursor position in console.

Signed-off-by: Ren Kimura <rkx1209dev@gmail.com>
---
 ui/console.c | 35 +++++++++++++++++++++++++++++++++--
 1 file changed, 33 insertions(+), 2 deletions(-)

diff --git a/ui/console.c b/ui/console.c
index ae61382..537a509 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -757,6 +757,25 @@ static void console_clear_xy(QemuConsole *s, int x, int y)
     update_xy(s, x, y);
 }
 
+static void console_respond_str(QemuConsole *s, const char *buf)
+{
+    TextCell *c;
+    int y1;
+    while (*buf) {
+        if (s->x >= s->width) {
+            s->x = 0;
+            console_put_lf(s);
+        }
+        y1 = (s->y_base + s->y) % s->total_height;
+        c = &s->cells[y1 * s->width + s->x];
+        c->ch = *buf;
+        c->t_attrib = s->t_attrib;
+        update_xy(s, s->x, s->y);
+        s->x++;
+        buf++;
+    }
+}
+
 /* set cursor, checking bounds */
 static void set_cursor(QemuConsole *s, int x, int y)
 {
@@ -782,6 +801,7 @@ static void console_putchar(QemuConsole *s, int ch)
     TextCell *c;
     int y1, i;
     int x, y;
+    char response[40];
 
     switch(s->state) {
     case TTY_STATE_NORM:
@@ -956,8 +976,19 @@ static void console_putchar(QemuConsole *s, int ch)
                 console_handle_escape(s);
                 break;
             case 'n':
-                /* report cursor position */
-                /* TODO: send ESC[row;colR */
+                switch (s->esc_params[0]) {
+                case 5:
+                    /* report console status (always succeed)*/
+                    console_respond_str(s, "\033[0n");
+                    break;
+                case 6:
+                    /* report cursor position */
+                    sprintf(response, "\033[%d;%dR",
+                           (s->y_base + s->y) % s->total_height + 1,
+                            s->x + 1);
+                    console_respond_str(s, response);
+                    break;
+                }
                 break;
             case 's':
                 /* save cursor position */
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5, 6n
  2016-03-06 10:36 [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5,6n Ren Kimura
@ 2016-03-08  9:40 ` Gerd Hoffmann
  2016-03-08 10:05   ` Ren Kimura
  0 siblings, 1 reply; 3+ messages in thread
From: Gerd Hoffmann @ 2016-03-08  9:40 UTC (permalink / raw)
  To: Ren Kimura; +Cc: qemu-devel

> +static void console_respond_str(QemuConsole *s, const char *buf)
> +{
> +    TextCell *c;
> +    int y1;
> +    while (*buf) {

> +        if (s->x >= s->width) {
> +            s->x = 0;
> +            console_put_lf(s);
> +        }
> +        y1 = (s->y_base + s->y) % s->total_height;
> +        c = &s->cells[y1 * s->width + s->x];
> +        c->ch = *buf;
> +        c->t_attrib = s->t_attrib;
> +        update_xy(s, s->x, s->y);
> +        s->x++;

I think you should just call console_putchar() here instead of cut
+pasting that code block.

If that doesn't work for some reason move the code block to a new
function which can be called from both console_putchar() and
console_respond_str().

thanks,
  Gerd

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5, 6n
  2016-03-08  9:40 ` [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5, 6n Gerd Hoffmann
@ 2016-03-08 10:05   ` Ren Kimura
  0 siblings, 0 replies; 3+ messages in thread
From: Ren Kimura @ 2016-03-08 10:05 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: QEMU Developers

[-- Attachment #1: Type: text/plain, Size: 909 bytes --]

Thank you for review.
OK I'll change these and send version3 later.

Ren

2016-03-08 18:40 GMT+09:00 Gerd Hoffmann <kraxel@redhat.com>:

> > +static void console_respond_str(QemuConsole *s, const char *buf)
> > +{
> > +    TextCell *c;
> > +    int y1;
> > +    while (*buf) {
>
> > +        if (s->x >= s->width) {
> > +            s->x = 0;
> > +            console_put_lf(s);
> > +        }
> > +        y1 = (s->y_base + s->y) % s->total_height;
> > +        c = &s->cells[y1 * s->width + s->x];
> > +        c->ch = *buf;
> > +        c->t_attrib = s->t_attrib;
> > +        update_xy(s, s->x, s->y);
> > +        s->x++;
>
> I think you should just call console_putchar() here instead of cut
> +pasting that code block.
>
> If that doesn't work for some reason move the code block to a new
> function which can be called from both console_putchar() and
> console_respond_str().
>
> thanks,
>   Gerd
>
>

[-- Attachment #2: Type: text/html, Size: 1498 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-03-08 10:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-06 10:36 [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5,6n Ren Kimura
2016-03-08  9:40 ` [Qemu-devel] [PATCH v2] ui/console: add escape sequence \e[5, 6n Gerd Hoffmann
2016-03-08 10:05   ` Ren Kimura

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).