2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is libguac-client-ssh.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Michael Jumper.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
#include "terminal.h"
|
|
|
|
#include "terminal_handlers.h"
|
2011-08-05 02:17:44 +00:00
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
int guac_terminal_echo(guac_terminal* term, char c) {
|
2011-08-05 02:17:44 +00:00
|
|
|
|
2013-04-15 22:24:21 +00:00
|
|
|
static int bytes_remaining = 0;
|
|
|
|
static int codepoint = 0;
|
|
|
|
|
|
|
|
/* 1-byte UTF-8 codepoint */
|
|
|
|
if ((c & 0x80) == 0x00) { /* 0xxxxxxx */
|
|
|
|
codepoint = c & 0x7F;
|
|
|
|
bytes_remaining = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 2-byte UTF-8 codepoint */
|
|
|
|
else if ((c & 0xE0) == 0xC0) { /* 110xxxxx */
|
|
|
|
codepoint = c & 0x1F;
|
|
|
|
bytes_remaining = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 3-byte UTF-8 codepoint */
|
|
|
|
else if ((c & 0xF0) == 0xE0) { /* 1110xxxx */
|
|
|
|
codepoint = c & 0x0F;
|
|
|
|
bytes_remaining = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 4-byte UTF-8 codepoint */
|
|
|
|
else if ((c & 0xF8) == 0xF0) { /* 11110xxx */
|
|
|
|
codepoint = c & 0x07;
|
|
|
|
bytes_remaining = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Continuation of UTF-8 codepoint */
|
|
|
|
else if ((c & 0xC0) == 0x80) { /* 10xxxxxx */
|
|
|
|
codepoint = (codepoint << 6) | (c & 0x3F);
|
|
|
|
bytes_remaining--;
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
/* FIXME: Handle */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we need more bytes, wait for more bytes */
|
|
|
|
if (bytes_remaining != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (codepoint) {
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* Bell */
|
|
|
|
case 0x07:
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Backspace */
|
|
|
|
case 0x08:
|
|
|
|
if (term->cursor_col >= 1)
|
|
|
|
term->cursor_col--;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Carriage return */
|
|
|
|
case '\r':
|
|
|
|
term->cursor_col = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Line feed */
|
|
|
|
case '\n':
|
|
|
|
term->cursor_row++;
|
2011-08-05 21:46:35 +00:00
|
|
|
|
|
|
|
/* Scroll up if necessary */
|
2011-08-06 05:59:42 +00:00
|
|
|
if (term->cursor_row > term->scroll_end) {
|
|
|
|
term->cursor_row = term->scroll_end;
|
2011-08-05 21:46:35 +00:00
|
|
|
|
|
|
|
/* Scroll up by one row */
|
2013-03-24 23:56:17 +00:00
|
|
|
guac_terminal_scroll_up(term, term->scroll_start,
|
|
|
|
term->scroll_end, 1);
|
2011-08-05 21:46:35 +00:00
|
|
|
|
|
|
|
}
|
2011-08-05 02:17:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* ESC */
|
|
|
|
case 0x1B:
|
2012-12-09 08:35:37 +00:00
|
|
|
term->char_handler = guac_terminal_escape;
|
2011-08-05 02:17:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Displayable chars */
|
|
|
|
default:
|
2011-08-05 21:30:10 +00:00
|
|
|
|
2011-08-05 21:46:35 +00:00
|
|
|
/* Wrap if necessary */
|
|
|
|
if (term->cursor_col >= term->term_width) {
|
|
|
|
term->cursor_col = 0;
|
|
|
|
term->cursor_row++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Scroll up if necessary */
|
2011-08-06 05:59:42 +00:00
|
|
|
if (term->cursor_row > term->scroll_end) {
|
|
|
|
term->cursor_row = term->scroll_end;
|
2011-08-05 21:46:35 +00:00
|
|
|
|
|
|
|
/* Scroll up by one row */
|
2013-03-24 23:56:17 +00:00
|
|
|
guac_terminal_scroll_up(term, term->scroll_start,
|
|
|
|
term->scroll_end, 1);
|
2011-08-05 21:46:35 +00:00
|
|
|
|
2011-08-05 21:30:10 +00:00
|
|
|
}
|
|
|
|
|
2013-04-15 22:24:21 +00:00
|
|
|
/* For now, render all but basic latin as '?' */
|
|
|
|
if (codepoint > 0x7F)
|
|
|
|
codepoint = '?';
|
|
|
|
|
2013-03-24 23:56:17 +00:00
|
|
|
/* Write character */
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_set(term,
|
2011-08-05 02:17:44 +00:00
|
|
|
term->cursor_row,
|
|
|
|
term->cursor_col,
|
2013-04-15 22:24:21 +00:00
|
|
|
(char) codepoint);
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* Advance cursor */
|
|
|
|
term->cursor_col++;
|
2011-08-05 21:46:35 +00:00
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
int guac_terminal_escape(guac_terminal* term, char c) {
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
|
|
|
|
case '(':
|
2012-12-09 08:35:37 +00:00
|
|
|
term->char_handler = guac_terminal_charset;
|
2011-08-05 02:17:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ']':
|
2012-12-09 08:35:37 +00:00
|
|
|
term->char_handler = guac_terminal_osc;
|
2011-08-05 02:17:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '[':
|
2012-12-09 08:35:37 +00:00
|
|
|
term->char_handler = guac_terminal_csi;
|
2011-08-05 02:17:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2011-11-26 23:35:45 +00:00
|
|
|
guac_client_log_info(term->client, "Unhandled ESC sequence: %c", c);
|
2012-12-09 08:35:37 +00:00
|
|
|
term->char_handler = guac_terminal_echo;
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
int guac_terminal_charset(guac_terminal* term, char c) {
|
|
|
|
term->char_handler = guac_terminal_echo;
|
2011-08-05 02:17:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
int guac_terminal_csi(guac_terminal* term, char c) {
|
2011-08-05 02:17:44 +00:00
|
|
|
|
2011-08-05 02:36:04 +00:00
|
|
|
/* CSI function arguments */
|
|
|
|
static int argc = 0;
|
2011-08-05 21:39:11 +00:00
|
|
|
static int argv[16] = {0};
|
2011-08-05 02:36:04 +00:00
|
|
|
|
|
|
|
/* Argument building counter and buffer */
|
|
|
|
static int argv_length = 0;
|
|
|
|
static char argv_buffer[256];
|
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
/* FIXME: "The sequence of parameters may be preceded by a single question mark. */
|
|
|
|
if (c == '?')
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Digits get concatenated into argv */
|
|
|
|
if (c >= '0' && c <= '9') {
|
|
|
|
|
|
|
|
/* Concatenate digit if there is space in buffer */
|
2011-08-05 02:36:04 +00:00
|
|
|
if (argv_length < sizeof(argv_buffer)-1)
|
|
|
|
argv_buffer[argv_length++] = c;
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Any non-digit stops the parameter, and possibly the sequence */
|
|
|
|
else {
|
|
|
|
|
2011-08-06 00:09:44 +00:00
|
|
|
int i, row, col, amount;
|
2011-08-05 19:41:21 +00:00
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
/* At most 16 parameters */
|
2011-08-05 02:36:04 +00:00
|
|
|
if (argc < 16) {
|
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
/* Finish parameter */
|
2011-08-05 02:36:04 +00:00
|
|
|
argv_buffer[argv_length] = 0;
|
|
|
|
argv[argc++] = atoi(argv_buffer);
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* Prepare for next parameter */
|
2011-08-05 02:36:04 +00:00
|
|
|
argv_length = 0;
|
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle CSI functions */
|
|
|
|
switch (c) {
|
|
|
|
|
2011-08-06 00:09:44 +00:00
|
|
|
/* A: Move up */
|
|
|
|
case 'A':
|
|
|
|
|
|
|
|
/* Get move amount */
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
|
|
|
/* Move cursor */
|
|
|
|
term->cursor_row -= amount;
|
|
|
|
if (term->cursor_row < 0)
|
|
|
|
term->cursor_row = 0;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* B: Move down */
|
|
|
|
case 'B':
|
|
|
|
|
|
|
|
/* Get move amount */
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
|
|
|
/* Move cursor */
|
|
|
|
term->cursor_row += amount;
|
|
|
|
if (term->cursor_row >= term->term_height)
|
|
|
|
term->cursor_row = term->term_height - 1;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* D: Move left */
|
|
|
|
case 'D':
|
|
|
|
|
|
|
|
/* Get move amount */
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
|
|
|
/* Move cursor */
|
|
|
|
term->cursor_col -= amount;
|
|
|
|
if (term->cursor_col < 0)
|
|
|
|
term->cursor_col = 0;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* C: Move right */
|
|
|
|
case 'C':
|
|
|
|
|
|
|
|
/* Get move amount */
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
|
|
|
/* Move cursor */
|
|
|
|
term->cursor_col += amount;
|
|
|
|
if (term->cursor_col >= term->term_width)
|
|
|
|
term->cursor_col = term->term_width - 1;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2011-08-05 19:41:21 +00:00
|
|
|
/* m: Set graphics rendition */
|
|
|
|
case 'm':
|
|
|
|
|
|
|
|
for (i=0; i<argc; i++) {
|
|
|
|
|
|
|
|
int value = argv[i];
|
|
|
|
|
|
|
|
/* Reset attributes */
|
2013-03-20 05:48:43 +00:00
|
|
|
if (value == 0)
|
|
|
|
term->current_attributes = term->default_attributes;
|
2011-08-05 19:41:21 +00:00
|
|
|
|
2011-08-05 21:30:10 +00:00
|
|
|
/* Bold */
|
|
|
|
else if (value == 1)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.bold = true;
|
2011-08-05 21:30:10 +00:00
|
|
|
|
|
|
|
/* Underscore on */
|
|
|
|
else if (value == 4)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.underscore = true;
|
2011-08-05 21:30:10 +00:00
|
|
|
|
2011-08-05 19:41:21 +00:00
|
|
|
/* Foreground */
|
|
|
|
else if (value >= 30 && value <= 37)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.foreground = value - 30;
|
2011-08-05 19:41:21 +00:00
|
|
|
|
|
|
|
/* Background */
|
|
|
|
else if (value >= 40 && value <= 47)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.background = value - 40;
|
2011-08-05 19:41:21 +00:00
|
|
|
|
2011-08-05 21:30:10 +00:00
|
|
|
/* Underscore on, default foreground */
|
|
|
|
else if (value == 38) {
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.underscore = true;
|
|
|
|
term->current_attributes.foreground =
|
|
|
|
term->default_attributes.foreground;
|
2011-08-05 21:30:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Underscore off, default foreground */
|
|
|
|
else if (value == 39) {
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.underscore = false;
|
|
|
|
term->current_attributes.foreground =
|
|
|
|
term->default_attributes.foreground;
|
2011-08-05 21:30:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset background */
|
|
|
|
else if (value == 49)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.background =
|
|
|
|
term->default_attributes.background;
|
2011-08-05 21:30:10 +00:00
|
|
|
|
2011-08-05 20:49:47 +00:00
|
|
|
/* Reverse video */
|
|
|
|
else if (value == 7)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.reverse = true;
|
2011-08-05 20:49:47 +00:00
|
|
|
|
|
|
|
/* Reset reverse video */
|
|
|
|
else if (value == 27)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.reverse = false;
|
2011-08-05 20:49:47 +00:00
|
|
|
|
2011-08-05 21:30:10 +00:00
|
|
|
/* Reset intensity */
|
|
|
|
else if (value == 27)
|
2013-03-20 05:48:43 +00:00
|
|
|
term->current_attributes.bold = false;
|
2011-08-05 21:30:10 +00:00
|
|
|
|
2011-08-05 19:41:21 +00:00
|
|
|
else
|
2013-03-20 05:48:43 +00:00
|
|
|
guac_client_log_info(term->client,
|
|
|
|
"Unhandled graphics rendition: %i", value);
|
2011-08-05 19:41:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2011-08-06 05:59:42 +00:00
|
|
|
/* r: Set scrolling region */
|
|
|
|
case 'r':
|
|
|
|
term->scroll_start = argv[0]-1;
|
|
|
|
term->scroll_end = argv[1]-1;
|
|
|
|
break;
|
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
/* H: Move cursor */
|
|
|
|
case 'H':
|
2011-08-05 21:39:11 +00:00
|
|
|
|
|
|
|
row = argv[0]; if (row != 0) row--;
|
|
|
|
col = argv[1]; if (col != 0) col--;
|
|
|
|
|
|
|
|
term->cursor_row = row;
|
|
|
|
term->cursor_col = col;
|
2011-08-05 02:17:44 +00:00
|
|
|
break;
|
|
|
|
|
2011-08-06 00:09:44 +00:00
|
|
|
/* G: Move cursor, current row */
|
|
|
|
case 'G':
|
|
|
|
col = argv[0]; if (col != 0) col--;
|
|
|
|
term->cursor_col = col;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* d: Move cursor, current col */
|
|
|
|
case 'd':
|
|
|
|
row = argv[0]; if (row != 0) row--;
|
|
|
|
term->cursor_row = row;
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
/* J: Erase display */
|
|
|
|
case 'J':
|
2011-08-05 07:20:09 +00:00
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
/* Erase from cursor to end of display */
|
2011-08-05 07:20:09 +00:00
|
|
|
if (argv[0] == 0)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear_range(term,
|
2011-08-05 07:20:09 +00:00
|
|
|
term->cursor_row, term->cursor_col,
|
2013-03-29 09:51:31 +00:00
|
|
|
term->term_height-1, term->term_width-1);
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* Erase from start to cursor */
|
2011-08-05 07:20:09 +00:00
|
|
|
else if (argv[0] == 1)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear_range(term,
|
2011-08-05 07:20:09 +00:00
|
|
|
0, 0,
|
2013-03-29 09:51:31 +00:00
|
|
|
term->cursor_row, term->cursor_col);
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* Entire screen */
|
2011-08-05 07:20:09 +00:00
|
|
|
else if (argv[0] == 2)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear(term,
|
2013-03-29 09:51:31 +00:00
|
|
|
0, 0, term->term_height, term->term_width);
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* K: Erase line */
|
|
|
|
case 'K':
|
|
|
|
|
|
|
|
/* Erase from cursor to end of line */
|
2011-08-05 07:20:09 +00:00
|
|
|
if (argv[0] == 0)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear(term,
|
2011-08-05 07:20:09 +00:00
|
|
|
term->cursor_row, term->cursor_col,
|
2013-03-29 09:51:31 +00:00
|
|
|
1, term->term_width - term->cursor_col);
|
2011-08-05 19:14:15 +00:00
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* Erase from start to cursor */
|
2011-08-05 07:20:09 +00:00
|
|
|
else if (argv[0] == 1)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear(term,
|
2011-08-05 07:20:09 +00:00
|
|
|
term->cursor_row, 0,
|
2013-03-29 09:51:31 +00:00
|
|
|
1, term->cursor_col + 1);
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
/* Erase line */
|
2011-08-05 07:20:09 +00:00
|
|
|
else if (argv[0] == 2)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear(term,
|
2011-08-05 07:20:09 +00:00
|
|
|
term->cursor_row, 0,
|
2013-03-29 09:51:31 +00:00
|
|
|
1, term->term_width);
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
2011-08-10 01:32:54 +00:00
|
|
|
/* L: Insert blank lines (scroll down) */
|
|
|
|
case 'L':
|
|
|
|
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_scroll_down(term,
|
2011-08-10 01:32:54 +00:00
|
|
|
term->cursor_row, term->scroll_end, amount);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2011-08-10 16:31:12 +00:00
|
|
|
/* M: Delete lines (scroll up) */
|
2011-08-10 07:16:50 +00:00
|
|
|
case 'M':
|
|
|
|
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_scroll_up(term,
|
2011-08-10 07:16:50 +00:00
|
|
|
term->cursor_row, term->scroll_end, amount);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2011-08-10 16:31:12 +00:00
|
|
|
/* P: Delete characters (scroll left) */
|
|
|
|
case 'P':
|
|
|
|
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
|
|
|
/* Scroll left by amount */
|
|
|
|
if (term->cursor_col + amount < term->term_width)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_copy(term,
|
2011-08-10 16:31:12 +00:00
|
|
|
term->cursor_row, term->cursor_col + amount,
|
|
|
|
1,
|
|
|
|
term->term_width - term->cursor_col - amount,
|
|
|
|
term->cursor_row, term->cursor_col);
|
|
|
|
|
|
|
|
/* Clear right */
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear(term,
|
2011-08-10 16:31:12 +00:00
|
|
|
term->cursor_row, term->term_width - amount,
|
2013-03-29 09:51:31 +00:00
|
|
|
1, amount);
|
2011-08-10 16:31:12 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
2013-04-08 09:14:58 +00:00
|
|
|
/* X: Erase characters (no scroll) */
|
|
|
|
case 'X':
|
|
|
|
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
|
|
|
/* Clear characters */
|
|
|
|
guac_terminal_clear(term,
|
|
|
|
term->cursor_row, term->cursor_col,
|
|
|
|
1, amount);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2011-08-10 18:03:38 +00:00
|
|
|
/* @: Insert characters (scroll right) */
|
|
|
|
case '@':
|
|
|
|
|
|
|
|
amount = argv[0];
|
|
|
|
if (amount == 0) amount = 1;
|
|
|
|
|
|
|
|
/* Scroll right by amount */
|
|
|
|
if (term->cursor_col + amount < term->term_width)
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_copy(term,
|
2011-08-10 18:03:38 +00:00
|
|
|
term->cursor_row, term->cursor_col,
|
|
|
|
1, term->term_width - term->cursor_col - amount,
|
|
|
|
term->cursor_row, term->cursor_col + amount);
|
|
|
|
|
|
|
|
/* Clear left */
|
2012-12-09 08:35:37 +00:00
|
|
|
guac_terminal_clear(term,
|
2011-08-10 18:03:38 +00:00
|
|
|
term->cursor_row, term->cursor_col,
|
2013-03-29 09:51:31 +00:00
|
|
|
1, amount);
|
2011-08-10 18:03:38 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
2011-08-05 02:17:44 +00:00
|
|
|
/* Warn of unhandled codes */
|
|
|
|
default:
|
2013-04-08 09:14:58 +00:00
|
|
|
if (c != ';') {
|
|
|
|
|
|
|
|
guac_client_log_info(term->client,
|
|
|
|
"Unhandled CSI sequence: %c", c);
|
|
|
|
|
|
|
|
for (i=0; i<argc; i++)
|
|
|
|
guac_client_log_info(term->client,
|
|
|
|
" -> argv[%i] = %i", i, argv[i]);
|
|
|
|
|
|
|
|
}
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If not a semicolon, end of CSI sequence */
|
2011-08-05 02:36:04 +00:00
|
|
|
if (c != ';') {
|
2012-12-09 08:35:37 +00:00
|
|
|
term->char_handler = guac_terminal_echo;
|
2011-08-05 02:36:04 +00:00
|
|
|
|
2011-08-05 21:39:11 +00:00
|
|
|
/* Reset parameters */
|
|
|
|
for (i=0; i<argc; i++)
|
|
|
|
argv[i] = 0;
|
|
|
|
|
2011-08-05 02:36:04 +00:00
|
|
|
/* Reset argument counters */
|
|
|
|
argc = 0;
|
|
|
|
argv_length = 0;
|
|
|
|
}
|
2011-08-05 02:17:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-12-09 08:35:37 +00:00
|
|
|
int guac_terminal_osc(guac_terminal* term, char c) {
|
2011-08-05 02:17:44 +00:00
|
|
|
/* TODO: Implement OSC */
|
|
|
|
if (c == 0x9C || c == 0x5C || c == 0x07) /* ECMA-48 ST (String Terminator */
|
2012-12-09 08:35:37 +00:00
|
|
|
term->char_handler = guac_terminal_echo;
|
2011-08-05 02:17:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|