From: Ren Kimura <rkx1209dev@gmail.com>
To: kraxel@redhat.com
Cc: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] ui/console: add escape sequence \e[5,6n
Date: Sun, 6 Mar 2016 01:50:53 +0900 [thread overview]
Message-ID: <1457196653-9541-1-git-send-email-rkx1209dev@gmail.com> (raw)
This patch add support of escape sequence "\e[5,6n".
This implementation similar to that of linux tty driver.
Signed-off-by: Ren Kimura <rkx1209dev@gmail.com>
---
ui/console.c | 32 +++++++++++++++++++++++++++++++-
1 file changed, 31 insertions(+), 1 deletion(-)
diff --git a/ui/console.c b/ui/console.c
index ae61382..854ec98 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:
@@ -957,7 +977,17 @@ static void console_putchar(QemuConsole *s, int ch)
break;
case 'n':
/* report cursor position */
- /* TODO: send ESC[row;colR */
+ switch (s->esc_params[0]) {
+ case 5:
+ console_respond_str(s, "\033[0n");
+ break;
+ case 6:
+ 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
next reply other threads:[~2016-03-05 16:51 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-05 16:50 Ren Kimura [this message]
2016-03-06 9:49 ` [Qemu-devel] [PATCH] ui/console: add escape sequence \e[5,6n Peter Maydell
2016-03-06 10:04 ` Ren Kimura
-- strict thread matches above, loose matches on Subject: below --
2016-03-05 16:08 Ren Kimura
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1457196653-9541-1-git-send-email-rkx1209dev@gmail.com \
--to=rkx1209dev@gmail.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).