2013-04-25 18:54:00 +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>
|
|
|
|
#include <string.h>
|
|
|
|
#include <guacamole/client.h>
|
|
|
|
#include <guacamole/protocol.h>
|
|
|
|
|
|
|
|
#include "types.h"
|
2013-04-25 18:55:50 +00:00
|
|
|
#include "display.h"
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
const guac_terminal_color guac_terminal_palette[16] = {
|
|
|
|
|
|
|
|
/* Normal colors */
|
|
|
|
{0x00, 0x00, 0x00}, /* Black */
|
|
|
|
{0x99, 0x3E, 0x3E}, /* Red */
|
|
|
|
{0x3E, 0x99, 0x3E}, /* Green */
|
|
|
|
{0x99, 0x99, 0x3E}, /* Brown */
|
|
|
|
{0x3E, 0x3E, 0x99}, /* Blue */
|
|
|
|
{0x99, 0x3E, 0x99}, /* Magenta */
|
|
|
|
{0x3E, 0x99, 0x99}, /* Cyan */
|
|
|
|
{0x99, 0x99, 0x99}, /* White */
|
|
|
|
|
|
|
|
/* Intense colors */
|
|
|
|
{0x3E, 0x3E, 0x3E}, /* Black */
|
|
|
|
{0xFF, 0x67, 0x67}, /* Red */
|
|
|
|
{0x67, 0xFF, 0x67}, /* Green */
|
|
|
|
{0xFF, 0xFF, 0x67}, /* Brown */
|
|
|
|
{0x67, 0x67, 0xFF}, /* Blue */
|
|
|
|
{0xFF, 0x67, 0xFF}, /* Magenta */
|
|
|
|
{0x67, 0xFF, 0xFF}, /* Cyan */
|
|
|
|
{0xFF, 0xFF, 0xFF}, /* White */
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the location of the given character in the glyph cache layer,
|
|
|
|
* sending it first if necessary. The location returned is in characters,
|
|
|
|
* and thus must be multiplied by the glyph width to obtain the actual
|
|
|
|
* location within the glyph cache layer.
|
|
|
|
*/
|
2013-04-25 18:55:50 +00:00
|
|
|
int __guac_terminal_get_glyph(guac_terminal_display* display, char c) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_socket* socket = display->client->socket;
|
2013-04-25 18:54:00 +00:00
|
|
|
int location;
|
|
|
|
|
|
|
|
/* Use foreground color */
|
|
|
|
const guac_terminal_color* color =
|
2013-04-25 18:55:50 +00:00
|
|
|
&guac_terminal_palette[display->glyph_foreground];
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Use background color */
|
|
|
|
const guac_terminal_color* background =
|
2013-04-25 18:55:50 +00:00
|
|
|
&guac_terminal_palette[display->glyph_background];
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
cairo_surface_t* surface;
|
|
|
|
cairo_t* cairo;
|
|
|
|
|
|
|
|
PangoLayout* layout;
|
|
|
|
|
|
|
|
/* Return glyph if exists */
|
2013-04-25 18:55:50 +00:00
|
|
|
if (display->glyphs[(int) c])
|
|
|
|
return display->glyphs[(int) c] - 1;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
location = display->next_glyph++;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Otherwise, draw glyph */
|
|
|
|
surface = cairo_image_surface_create(
|
|
|
|
CAIRO_FORMAT_ARGB32,
|
2013-04-25 18:55:50 +00:00
|
|
|
display->char_width, display->char_height);
|
2013-04-25 18:54:00 +00:00
|
|
|
cairo = cairo_create(surface);
|
|
|
|
|
|
|
|
/* Get layout */
|
|
|
|
layout = pango_cairo_create_layout(cairo);
|
2013-04-25 18:55:50 +00:00
|
|
|
pango_layout_set_font_description(layout, display->font_desc);
|
2013-04-25 18:54:00 +00:00
|
|
|
pango_layout_set_text(layout, &c, 1);
|
|
|
|
|
|
|
|
/* Draw */
|
|
|
|
cairo_set_source_rgba(cairo,
|
|
|
|
color->red / 255.0,
|
|
|
|
color->green / 255.0,
|
|
|
|
color->blue / 255.0,
|
|
|
|
1.0 /* alpha */ );
|
|
|
|
|
|
|
|
cairo_move_to(cairo, 0.0, 0.0);
|
|
|
|
pango_cairo_show_layout(cairo, layout);
|
|
|
|
|
|
|
|
/* Free all */
|
|
|
|
g_object_unref(layout);
|
|
|
|
cairo_destroy(cairo);
|
|
|
|
|
|
|
|
/* Send glyph and update filled flyphs */
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_png(socket, GUAC_COMP_OVER, display->glyph_stroke, location * display->char_width, 0, surface);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_rect(socket, display->filled_glyphs,
|
|
|
|
location * display->char_width, 0,
|
|
|
|
display->char_width, display->char_height);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_cfill(socket, GUAC_COMP_OVER, display->filled_glyphs,
|
2013-04-25 18:54:00 +00:00
|
|
|
background->red,
|
|
|
|
background->green,
|
|
|
|
background->blue,
|
|
|
|
0xFF);
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_copy(socket, display->glyph_stroke,
|
|
|
|
location * display->char_width, 0, display->char_width, display->char_height,
|
|
|
|
GUAC_COMP_OVER, display->filled_glyphs, location * display->char_width, 0);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
display->glyphs[(int) c] = location+1;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
cairo_surface_destroy(surface);
|
|
|
|
|
|
|
|
/* Return glyph */
|
|
|
|
return location;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the attributes of the glyph cache layer such that future copies from
|
|
|
|
* this layer will display as expected.
|
|
|
|
*/
|
2013-04-25 18:55:50 +00:00
|
|
|
int __guac_terminal_set_colors(guac_terminal_display* display,
|
2013-04-25 18:54:00 +00:00
|
|
|
guac_terminal_attributes* attributes) {
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_socket* socket = display->client->socket;
|
2013-04-25 18:54:00 +00:00
|
|
|
const guac_terminal_color* background_color;
|
|
|
|
int background, foreground;
|
|
|
|
|
|
|
|
/* Handle reverse video */
|
|
|
|
if (attributes->reverse != attributes->selected) {
|
|
|
|
background = attributes->foreground;
|
|
|
|
foreground = attributes->background;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
foreground = attributes->foreground;
|
|
|
|
background = attributes->background;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle bold */
|
|
|
|
if (attributes->bold && foreground <= 7)
|
|
|
|
foreground += 8;
|
|
|
|
|
|
|
|
/* Get background color */
|
|
|
|
background_color = &guac_terminal_palette[background];
|
|
|
|
|
|
|
|
/* If foreground different from current, colorize */
|
2013-04-25 18:55:50 +00:00
|
|
|
if (foreground != display->glyph_foreground) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Get color */
|
|
|
|
const guac_terminal_color* color =
|
|
|
|
&guac_terminal_palette[foreground];
|
|
|
|
|
|
|
|
/* Colorize letter */
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_rect(socket, display->glyph_stroke,
|
2013-04-25 18:54:00 +00:00
|
|
|
0, 0,
|
2013-04-25 18:55:50 +00:00
|
|
|
display->char_width * display->next_glyph, display->char_height);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_cfill(socket, GUAC_COMP_ATOP, display->glyph_stroke,
|
2013-04-25 18:54:00 +00:00
|
|
|
color->red,
|
|
|
|
color->green,
|
|
|
|
color->blue,
|
|
|
|
255);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If any color change at all, update filled */
|
2013-04-25 18:55:50 +00:00
|
|
|
if (foreground != display->glyph_foreground
|
|
|
|
|| background != display->glyph_background) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Set background */
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_rect(socket, display->filled_glyphs,
|
2013-04-25 18:54:00 +00:00
|
|
|
0, 0,
|
2013-04-25 18:55:50 +00:00
|
|
|
display->char_width * display->next_glyph, display->char_height);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_cfill(socket, GUAC_COMP_OVER, display->filled_glyphs,
|
2013-04-25 18:54:00 +00:00
|
|
|
background_color->red,
|
|
|
|
background_color->green,
|
|
|
|
background_color->blue,
|
|
|
|
255);
|
|
|
|
|
|
|
|
/* Copy stroke */
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_copy(socket, display->glyph_stroke,
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
0, 0,
|
2013-04-25 18:55:50 +00:00
|
|
|
display->char_width * display->next_glyph, display->char_height,
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
GUAC_COMP_OVER, display->filled_glyphs,
|
2013-04-25 18:54:00 +00:00
|
|
|
0, 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
display->glyph_foreground = foreground;
|
|
|
|
display->glyph_background = background;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends the given character to the terminal at the given row and column,
|
2013-04-25 18:55:50 +00:00
|
|
|
* rendering the charater immediately. This bypasses the guac_terminal_display
|
2013-04-25 18:54:00 +00:00
|
|
|
* mechanism and is intended for flushing of updates only.
|
|
|
|
*/
|
2013-04-25 18:55:50 +00:00
|
|
|
int __guac_terminal_set(guac_terminal_display* display, int row, int col, char c) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_socket* socket = display->client->socket;
|
|
|
|
int location = __guac_terminal_get_glyph(display, c);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
return guac_protocol_send_copy(socket,
|
2013-04-25 18:55:50 +00:00
|
|
|
display->filled_glyphs,
|
|
|
|
location * display->char_width, 0, display->char_width, display->char_height,
|
2013-04-25 18:54:00 +00:00
|
|
|
GUAC_COMP_OVER, GUAC_DEFAULT_LAYER,
|
2013-04-25 18:55:50 +00:00
|
|
|
display->char_width * col,
|
|
|
|
display->char_height * row);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-26 21:14:19 +00:00
|
|
|
guac_terminal_display* guac_terminal_display_alloc(guac_client* client, int foreground, int background) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
PangoFontMap* font_map;
|
|
|
|
PangoFont* font;
|
|
|
|
PangoFontMetrics* metrics;
|
|
|
|
PangoContext* context;
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
/* Allocate display */
|
|
|
|
guac_terminal_display* display = malloc(sizeof(guac_terminal_display));
|
|
|
|
display->client = client;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
memset(display->glyphs, 0, sizeof(display->glyphs));
|
|
|
|
display->glyph_stroke = guac_client_alloc_buffer(client);
|
|
|
|
display->filled_glyphs = guac_client_alloc_buffer(client);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Get font */
|
2013-04-25 18:55:50 +00:00
|
|
|
display->font_desc = pango_font_description_new();
|
|
|
|
pango_font_description_set_family(display->font_desc, "monospace");
|
|
|
|
pango_font_description_set_weight(display->font_desc, PANGO_WEIGHT_NORMAL);
|
|
|
|
pango_font_description_set_size(display->font_desc, 12*PANGO_SCALE);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
font_map = pango_cairo_font_map_get_default();
|
|
|
|
context = pango_font_map_create_context(font_map);
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
font = pango_font_map_load_font(font_map, context, display->font_desc);
|
2013-04-25 18:54:00 +00:00
|
|
|
if (font == NULL) {
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_client_log_error(display->client, "Unable to get font.");
|
2013-04-25 18:54:00 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
metrics = pango_font_get_metrics(font, NULL);
|
|
|
|
if (metrics == NULL) {
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_client_log_error(display->client, "Unable to get font metrics.");
|
2013-04-25 18:54:00 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
display->glyph_foreground = foreground;
|
|
|
|
display->glyph_background = background;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Calculate character dimensions */
|
2013-04-25 18:55:50 +00:00
|
|
|
display->char_width =
|
2013-04-25 18:54:00 +00:00
|
|
|
pango_font_metrics_get_approximate_digit_width(metrics) / PANGO_SCALE;
|
2013-04-25 18:55:50 +00:00
|
|
|
display->char_height =
|
2013-04-25 18:54:00 +00:00
|
|
|
(pango_font_metrics_get_descent(metrics)
|
|
|
|
+ pango_font_metrics_get_ascent(metrics)) / PANGO_SCALE;
|
|
|
|
|
2013-04-26 21:14:19 +00:00
|
|
|
/* Initially empty */
|
|
|
|
display->width = 0;
|
|
|
|
display->height = 0;
|
|
|
|
display->operations = NULL;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
return display;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
void guac_terminal_display_free(guac_terminal_display* display) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Free operations buffers */
|
2013-04-25 18:55:50 +00:00
|
|
|
free(display->operations);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
/* Free display */
|
|
|
|
free(display);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
void guac_terminal_display_copy_columns(guac_terminal_display* display, int row,
|
2013-04-25 18:54:00 +00:00
|
|
|
int start_column, int end_column, int offset) {
|
2013-04-26 17:36:02 +00:00
|
|
|
|
|
|
|
int i;
|
|
|
|
guac_terminal_operation* src_current =
|
|
|
|
&(display->operations[row * display->width + start_column]);
|
|
|
|
|
|
|
|
guac_terminal_operation* current =
|
|
|
|
&(display->operations[row * display->width + start_column + offset]);
|
|
|
|
|
|
|
|
/* Move data */
|
|
|
|
memmove(current, src_current,
|
|
|
|
(end_column - start_column + 1) * sizeof(guac_terminal_operation));
|
|
|
|
|
|
|
|
/* Update operations */
|
|
|
|
for (i=start_column; i<=end_column; i++) {
|
|
|
|
|
|
|
|
/* If no operation here, set as copy */
|
|
|
|
if (current->type == GUAC_CHAR_NOP) {
|
|
|
|
current->type = GUAC_CHAR_COPY;
|
|
|
|
current->row = row;
|
|
|
|
current->column = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next column */
|
|
|
|
current++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:54:00 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 08:53:19 +00:00
|
|
|
void guac_terminal_display_copy_rows(guac_terminal_display* display,
|
2013-04-25 18:54:00 +00:00
|
|
|
int start_row, int end_row, int offset) {
|
2013-04-26 17:36:02 +00:00
|
|
|
|
|
|
|
int row, col;
|
|
|
|
|
|
|
|
guac_terminal_operation* src_current_row =
|
|
|
|
&(display->operations[start_row * display->width]);
|
|
|
|
|
|
|
|
guac_terminal_operation* current_row =
|
|
|
|
&(display->operations[(start_row + offset) * display->width]);
|
|
|
|
|
|
|
|
/* Move data */
|
|
|
|
memmove(current_row, src_current_row,
|
|
|
|
(end_row - start_row + 1) * sizeof(guac_terminal_operation) * display->width);
|
|
|
|
|
|
|
|
/* Update operations */
|
|
|
|
for (row=start_row; row<=end_row; row++) {
|
|
|
|
|
|
|
|
guac_terminal_operation* current = current_row;
|
|
|
|
for (col=0; col<display->width; col++) {
|
|
|
|
|
|
|
|
/* If no operation here, set as copy */
|
|
|
|
if (current->type == GUAC_CHAR_NOP) {
|
|
|
|
current->type = GUAC_CHAR_COPY;
|
|
|
|
current->row = row;
|
|
|
|
current->column = col;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next column */
|
|
|
|
current++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next row */
|
|
|
|
current_row += display->width;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:54:00 +00:00
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
void guac_terminal_display_set_columns(guac_terminal_display* display, int row,
|
2013-04-25 18:54:00 +00:00
|
|
|
int start_column, int end_column, guac_terminal_char* character) {
|
2013-04-26 09:29:30 +00:00
|
|
|
|
|
|
|
int i;
|
|
|
|
guac_terminal_operation* current =
|
|
|
|
&(display->operations[row * display->width + start_column]);
|
|
|
|
|
|
|
|
/* For each column in range */
|
|
|
|
for (i=start_column; i<=end_column; i++) {
|
|
|
|
|
|
|
|
/* Set operation */
|
|
|
|
current->type = GUAC_CHAR_SET;
|
|
|
|
current->character = *character;
|
|
|
|
|
|
|
|
/* Next column */
|
|
|
|
current++;
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:54:00 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 21:14:19 +00:00
|
|
|
void guac_terminal_display_resize(guac_terminal_display* display, int width, int height) {
|
|
|
|
|
|
|
|
guac_terminal_operation* current;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
/* Set width and height */
|
|
|
|
display->width = width;
|
|
|
|
display->height = height;
|
|
|
|
|
|
|
|
/* Free old operations buffer */
|
|
|
|
if (display->operations != NULL)
|
|
|
|
free(display->operations);
|
|
|
|
|
|
|
|
/* Alloc operations */
|
|
|
|
display->operations = malloc(width * height *
|
|
|
|
sizeof(guac_terminal_operation));
|
|
|
|
|
|
|
|
/* Init each operation buffer row */
|
|
|
|
current = display->operations;
|
|
|
|
for (y=0; y<height; y++) {
|
|
|
|
|
|
|
|
/* Init entire row to NOP */
|
|
|
|
for (x=0; x<width; x++)
|
|
|
|
(current++)->type = GUAC_CHAR_NOP;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send initial display size */
|
|
|
|
guac_protocol_send_size(display->client->socket,
|
|
|
|
GUAC_DEFAULT_LAYER,
|
|
|
|
display->char_width * width,
|
|
|
|
display->char_height * height);
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-25 18:54:00 +00:00
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
void __guac_terminal_display_flush_copy(guac_terminal_display* display) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_terminal_operation* current = display->operations;
|
2013-04-25 18:54:00 +00:00
|
|
|
int row, col;
|
|
|
|
|
|
|
|
/* For each operation */
|
2013-04-25 18:55:50 +00:00
|
|
|
for (row=0; row<display->height; row++) {
|
|
|
|
for (col=0; col<display->width; col++) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* If operation is a copy operation */
|
|
|
|
if (current->type == GUAC_CHAR_COPY) {
|
|
|
|
|
|
|
|
/* The determined bounds of the rectangle of contiguous
|
|
|
|
* operations */
|
|
|
|
int detected_right = -1;
|
|
|
|
int detected_bottom = row;
|
|
|
|
|
|
|
|
/* The current row or column within a rectangle */
|
|
|
|
int rect_row, rect_col;
|
|
|
|
|
|
|
|
/* The dimensions of the rectangle as determined */
|
|
|
|
int rect_width, rect_height;
|
|
|
|
|
|
|
|
/* The expected row and column source for the next copy
|
|
|
|
* operation (if adjacent to current) */
|
|
|
|
int expected_row, expected_col;
|
|
|
|
|
|
|
|
/* Current row within a subrect */
|
|
|
|
guac_terminal_operation* rect_current_row;
|
|
|
|
|
|
|
|
/* Determine bounds of rectangle */
|
|
|
|
rect_current_row = current;
|
|
|
|
expected_row = current->row;
|
2013-04-25 18:55:50 +00:00
|
|
|
for (rect_row=row; rect_row<display->height; rect_row++) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
guac_terminal_operation* rect_current = rect_current_row;
|
|
|
|
expected_col = current->column;
|
|
|
|
|
|
|
|
/* Find width */
|
2013-04-25 18:55:50 +00:00
|
|
|
for (rect_col=col; rect_col<display->width; rect_col++) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* If not identical operation, stop */
|
|
|
|
if (rect_current->type != GUAC_CHAR_COPY
|
|
|
|
|| rect_current->row != expected_row
|
|
|
|
|| rect_current->column != expected_col)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Next column */
|
|
|
|
rect_current++;
|
|
|
|
expected_col++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If too small, cannot append row */
|
|
|
|
if (rect_col-1 < detected_right)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* As row has been accepted, update rect_row of rect */
|
|
|
|
detected_bottom = rect_row;
|
|
|
|
|
|
|
|
/* For now, only set rect_col bound if uninitialized */
|
|
|
|
if (detected_right == -1)
|
|
|
|
detected_right = rect_col - 1;
|
|
|
|
|
|
|
|
/* Next row */
|
2013-04-25 18:55:50 +00:00
|
|
|
rect_current_row += display->width;
|
2013-04-25 18:54:00 +00:00
|
|
|
expected_row++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate dimensions */
|
|
|
|
rect_width = detected_right - col + 1;
|
|
|
|
rect_height = detected_bottom - row + 1;
|
|
|
|
|
|
|
|
/* Mark rect as NOP (as it has been handled) */
|
|
|
|
rect_current_row = current;
|
|
|
|
expected_row = current->row;
|
|
|
|
for (rect_row=0; rect_row<rect_height; rect_row++) {
|
|
|
|
|
|
|
|
guac_terminal_operation* rect_current = rect_current_row;
|
|
|
|
expected_col = current->column;
|
|
|
|
|
|
|
|
for (rect_col=0; rect_col<rect_width; rect_col++) {
|
|
|
|
|
|
|
|
/* Mark copy operations as NOP */
|
|
|
|
if (rect_current->type == GUAC_CHAR_COPY
|
|
|
|
&& rect_current->row == expected_row
|
|
|
|
&& rect_current->column == expected_col)
|
|
|
|
rect_current->type = GUAC_CHAR_NOP;
|
|
|
|
|
|
|
|
/* Next column */
|
|
|
|
rect_current++;
|
|
|
|
expected_col++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next row */
|
2013-04-25 18:55:50 +00:00
|
|
|
rect_current_row += display->width;
|
2013-04-25 18:54:00 +00:00
|
|
|
expected_row++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send copy */
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_copy(display->client->socket,
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
GUAC_DEFAULT_LAYER,
|
2013-04-25 18:55:50 +00:00
|
|
|
current->column * display->char_width,
|
|
|
|
current->row * display->char_height,
|
|
|
|
rect_width * display->char_width,
|
|
|
|
rect_height * display->char_height,
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
GUAC_COMP_OVER,
|
|
|
|
GUAC_DEFAULT_LAYER,
|
2013-04-25 18:55:50 +00:00
|
|
|
col * display->char_width,
|
|
|
|
row * display->char_height);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
} /* end if copy operation */
|
|
|
|
|
|
|
|
/* Next operation */
|
|
|
|
current++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
void __guac_terminal_display_flush_clear(guac_terminal_display* display) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_terminal_operation* current = display->operations;
|
2013-04-25 18:54:00 +00:00
|
|
|
int row, col;
|
|
|
|
|
|
|
|
/* For each operation */
|
2013-04-25 18:55:50 +00:00
|
|
|
for (row=0; row<display->height; row++) {
|
|
|
|
for (col=0; col<display->width; col++) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* If operation is a cler operation (set to space) */
|
|
|
|
if (current->type == GUAC_CHAR_SET &&
|
|
|
|
current->character.value == ' ') {
|
|
|
|
|
|
|
|
/* The determined bounds of the rectangle of contiguous
|
|
|
|
* operations */
|
|
|
|
int detected_right = -1;
|
|
|
|
int detected_bottom = row;
|
|
|
|
|
|
|
|
/* The current row or column within a rectangle */
|
|
|
|
int rect_row, rect_col;
|
|
|
|
|
|
|
|
/* The dimensions of the rectangle as determined */
|
|
|
|
int rect_width, rect_height;
|
|
|
|
|
|
|
|
/* Color of the rectangle to draw */
|
|
|
|
int color;
|
|
|
|
if (current->character.attributes.reverse != current->character.attributes.selected)
|
|
|
|
color = current->character.attributes.foreground;
|
|
|
|
else
|
|
|
|
color = current->character.attributes.background;
|
|
|
|
|
|
|
|
const guac_terminal_color* guac_color =
|
|
|
|
&guac_terminal_palette[color];
|
|
|
|
|
|
|
|
/* Current row within a subrect */
|
|
|
|
guac_terminal_operation* rect_current_row;
|
|
|
|
|
|
|
|
/* Determine bounds of rectangle */
|
|
|
|
rect_current_row = current;
|
2013-04-25 18:55:50 +00:00
|
|
|
for (rect_row=row; rect_row<display->height; rect_row++) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
guac_terminal_operation* rect_current = rect_current_row;
|
|
|
|
|
|
|
|
/* Find width */
|
2013-04-25 18:55:50 +00:00
|
|
|
for (rect_col=col; rect_col<display->width; rect_col++) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
int joining_color;
|
|
|
|
if (rect_current->character.attributes.reverse)
|
|
|
|
joining_color = current->character.attributes.foreground;
|
|
|
|
else
|
|
|
|
joining_color = current->character.attributes.background;
|
|
|
|
|
|
|
|
/* If not identical operation, stop */
|
|
|
|
if (rect_current->type != GUAC_CHAR_SET
|
|
|
|
|| rect_current->character.value != ' '
|
|
|
|
|| joining_color != color)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Next column */
|
|
|
|
rect_current++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If too small, cannot append row */
|
|
|
|
if (rect_col-1 < detected_right)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* As row has been accepted, update rect_row of rect */
|
|
|
|
detected_bottom = rect_row;
|
|
|
|
|
|
|
|
/* For now, only set rect_col bound if uninitialized */
|
|
|
|
if (detected_right == -1)
|
|
|
|
detected_right = rect_col - 1;
|
|
|
|
|
|
|
|
/* Next row */
|
2013-04-25 18:55:50 +00:00
|
|
|
rect_current_row += display->width;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate dimensions */
|
|
|
|
rect_width = detected_right - col + 1;
|
|
|
|
rect_height = detected_bottom - row + 1;
|
|
|
|
|
|
|
|
/* Mark rect as NOP (as it has been handled) */
|
|
|
|
rect_current_row = current;
|
|
|
|
for (rect_row=0; rect_row<rect_height; rect_row++) {
|
|
|
|
|
|
|
|
guac_terminal_operation* rect_current = rect_current_row;
|
|
|
|
|
|
|
|
for (rect_col=0; rect_col<rect_width; rect_col++) {
|
|
|
|
|
|
|
|
int joining_color;
|
|
|
|
if (rect_current->character.attributes.reverse)
|
|
|
|
joining_color = current->character.attributes.foreground;
|
|
|
|
else
|
|
|
|
joining_color = current->character.attributes.background;
|
|
|
|
|
|
|
|
/* Mark clear operations as NOP */
|
|
|
|
if (rect_current->type == GUAC_CHAR_SET
|
|
|
|
&& rect_current->character.value == ' '
|
|
|
|
&& joining_color == color)
|
|
|
|
rect_current->type = GUAC_CHAR_NOP;
|
|
|
|
|
|
|
|
/* Next column */
|
|
|
|
rect_current++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next row */
|
2013-04-25 18:55:50 +00:00
|
|
|
rect_current_row += display->width;
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send rect */
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_rect(display->client->socket,
|
2013-04-25 18:54:00 +00:00
|
|
|
GUAC_DEFAULT_LAYER,
|
2013-04-25 18:55:50 +00:00
|
|
|
col * display->char_width,
|
|
|
|
row * display->char_height,
|
|
|
|
rect_width * display->char_width,
|
|
|
|
rect_height * display->char_height);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_protocol_send_cfill(display->client->socket,
|
2013-04-25 18:54:00 +00:00
|
|
|
GUAC_COMP_OVER,
|
|
|
|
GUAC_DEFAULT_LAYER,
|
|
|
|
guac_color->red, guac_color->green, guac_color->blue,
|
|
|
|
0xFF);
|
|
|
|
|
|
|
|
} /* end if clear operation */
|
|
|
|
|
|
|
|
/* Next operation */
|
|
|
|
current++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
void __guac_terminal_display_flush_set(guac_terminal_display* display) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
guac_terminal_operation* current = display->operations;
|
2013-04-25 18:54:00 +00:00
|
|
|
int row, col;
|
|
|
|
|
|
|
|
/* For each operation */
|
2013-04-25 18:55:50 +00:00
|
|
|
for (row=0; row<display->height; row++) {
|
|
|
|
for (col=0; col<display->width; col++) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Perform given operation */
|
|
|
|
if (current->type == GUAC_CHAR_SET) {
|
|
|
|
|
|
|
|
/* Set attributes */
|
2013-04-25 18:55:50 +00:00
|
|
|
__guac_terminal_set_colors(display,
|
2013-04-25 18:54:00 +00:00
|
|
|
&(current->character.attributes));
|
|
|
|
|
|
|
|
/* Send character */
|
2013-04-25 18:55:50 +00:00
|
|
|
__guac_terminal_set(display, row, col,
|
2013-04-25 18:54:00 +00:00
|
|
|
current->character.value);
|
|
|
|
|
|
|
|
/* Mark operation as handled */
|
|
|
|
current->type = GUAC_CHAR_NOP;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next operation */
|
|
|
|
current++;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:55:50 +00:00
|
|
|
void guac_terminal_display_flush(guac_terminal_display* display) {
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
/* Flush operations, copies first, then clears, then sets. */
|
2013-04-25 18:55:50 +00:00
|
|
|
__guac_terminal_display_flush_copy(display);
|
|
|
|
__guac_terminal_display_flush_clear(display);
|
|
|
|
__guac_terminal_display_flush_set(display);
|
2013-04-25 18:54:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|