218 lines
6.9 KiB
C
218 lines
6.9 KiB
C
/*
|
|
* Copyright (C) 2013 Glyptodon LLC
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "client.h"
|
|
#include "guac_surface.h"
|
|
#include "rdp_bitmap.h"
|
|
#include "rdp_settings.h"
|
|
|
|
#include <cairo/cairo.h>
|
|
#include <freerdp/codec/bitmap.h>
|
|
#include <freerdp/codec/color.h>
|
|
#include <freerdp/freerdp.h>
|
|
#include <guacamole/client.h>
|
|
#include <guacamole/socket.h>
|
|
|
|
#ifdef ENABLE_WINPR
|
|
#include <winpr/wtypes.h>
|
|
#else
|
|
#include "compat/winpr-wtypes.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void guac_rdp_cache_bitmap(rdpContext* context, rdpBitmap* bitmap) {
|
|
|
|
guac_client* client = ((rdp_freerdp_context*) context)->client;
|
|
guac_socket* socket = client->socket;
|
|
|
|
/* Allocate surface */
|
|
guac_layer* buffer = guac_client_alloc_buffer(client);
|
|
guac_common_surface* surface = guac_common_surface_alloc(socket, buffer, bitmap->width, bitmap->height);
|
|
|
|
/* Cache image data if present */
|
|
if (bitmap->data != NULL) {
|
|
|
|
/* Create surface from image data */
|
|
cairo_surface_t* image = cairo_image_surface_create_for_data(
|
|
bitmap->data, CAIRO_FORMAT_RGB24,
|
|
bitmap->width, bitmap->height, 4*bitmap->width);
|
|
|
|
/* Send surface to buffer */
|
|
guac_common_surface_draw(surface, 0, 0, image);
|
|
|
|
/* Free surface */
|
|
cairo_surface_destroy(image);
|
|
|
|
}
|
|
|
|
/* Store buffer reference in bitmap */
|
|
((guac_rdp_bitmap*) bitmap)->buffer = buffer;
|
|
((guac_rdp_bitmap*) bitmap)->surface = surface;
|
|
|
|
}
|
|
|
|
void guac_rdp_bitmap_new(rdpContext* context, rdpBitmap* bitmap) {
|
|
|
|
/* Convert image data if present */
|
|
if (bitmap->data != NULL) {
|
|
|
|
/* Get client data */
|
|
guac_client* client = ((rdp_freerdp_context*) context)->client;
|
|
rdp_guac_client_data* client_data = (rdp_guac_client_data*) client->data;
|
|
|
|
/* Convert image data to 32-bit RGB */
|
|
unsigned char* image_buffer = freerdp_image_convert(bitmap->data, NULL,
|
|
bitmap->width, bitmap->height,
|
|
client_data->settings.color_depth,
|
|
32, ((rdp_freerdp_context*) context)->clrconv);
|
|
|
|
/* Free existing image, if any */
|
|
if (image_buffer != bitmap->data)
|
|
free(bitmap->data);
|
|
|
|
/* Store converted image in bitmap */
|
|
bitmap->data = image_buffer;
|
|
|
|
}
|
|
|
|
/* No corresponding surface yet - caching is deferred. */
|
|
((guac_rdp_bitmap*) bitmap)->buffer = NULL;
|
|
((guac_rdp_bitmap*) bitmap)->surface = NULL;
|
|
|
|
/* Start at zero usage */
|
|
((guac_rdp_bitmap*) bitmap)->used = 0;
|
|
|
|
}
|
|
|
|
void guac_rdp_bitmap_paint(rdpContext* context, rdpBitmap* bitmap) {
|
|
|
|
guac_client* client = ((rdp_freerdp_context*) context)->client;
|
|
rdp_guac_client_data* client_data = (rdp_guac_client_data*) client->data;
|
|
|
|
guac_common_surface* surface = ((guac_rdp_bitmap*) bitmap)->surface;
|
|
|
|
int width = bitmap->right - bitmap->left + 1;
|
|
int height = bitmap->bottom - bitmap->top + 1;
|
|
|
|
/* If not cached, cache if necessary */
|
|
if (surface == NULL && ((guac_rdp_bitmap*) bitmap)->used >= 1)
|
|
guac_rdp_cache_bitmap(context, bitmap);
|
|
|
|
/* If cached, retrieve from cache */
|
|
if (surface != NULL)
|
|
guac_common_surface_copy(surface, 0, 0, width, height,
|
|
client_data->default_surface, bitmap->left, bitmap->top);
|
|
|
|
/* Otherwise, draw with stored image data */
|
|
else if (bitmap->data != NULL) {
|
|
|
|
/* Create surface from image data */
|
|
cairo_surface_t* image = cairo_image_surface_create_for_data(
|
|
bitmap->data, CAIRO_FORMAT_RGB24,
|
|
width, height, 4*bitmap->width);
|
|
|
|
/* Draw image on default surface */
|
|
guac_common_surface_draw(client_data->default_surface, bitmap->left, bitmap->top, image);
|
|
|
|
/* Free surface */
|
|
cairo_surface_destroy(image);
|
|
|
|
}
|
|
|
|
/* Increment usage counter */
|
|
((guac_rdp_bitmap*) bitmap)->used++;
|
|
|
|
}
|
|
|
|
void guac_rdp_bitmap_free(rdpContext* context, rdpBitmap* bitmap) {
|
|
|
|
guac_client* client = ((rdp_freerdp_context*) context)->client;
|
|
guac_layer* buffer = ((guac_rdp_bitmap*) bitmap)->buffer;
|
|
guac_common_surface* surface = ((guac_rdp_bitmap*) bitmap)->surface;
|
|
|
|
/* If cached, free surface */
|
|
if (surface != NULL)
|
|
guac_common_surface_free(surface);
|
|
|
|
/* If cached, free buffer */
|
|
if (buffer != NULL)
|
|
guac_client_free_buffer(client, buffer);
|
|
|
|
}
|
|
|
|
void guac_rdp_bitmap_setsurface(rdpContext* context, rdpBitmap* bitmap, BOOL primary) {
|
|
|
|
guac_client* client = ((rdp_freerdp_context*) context)->client;
|
|
rdp_guac_client_data* client_data = (rdp_guac_client_data*) client->data;
|
|
|
|
if (primary)
|
|
client_data->current_surface = client_data->default_surface;
|
|
|
|
else {
|
|
|
|
/* Make sure that the recieved bitmap is not NULL before processing */
|
|
if (bitmap == NULL) {
|
|
guac_client_log_info(client, "NULL bitmap found in bitmap_setsurface instruction.");
|
|
return;
|
|
}
|
|
|
|
/* If not available as a surface, make available. */
|
|
if (((guac_rdp_bitmap*) bitmap)->surface == NULL)
|
|
guac_rdp_cache_bitmap(context, bitmap);
|
|
|
|
client_data->current_surface = ((guac_rdp_bitmap*) bitmap)->surface;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef LEGACY_RDPBITMAP
|
|
void guac_rdp_bitmap_decompress(rdpContext* context, rdpBitmap* bitmap, UINT8* data,
|
|
int width, int height, int bpp, int length, BOOL compressed) {
|
|
#else
|
|
void guac_rdp_bitmap_decompress(rdpContext* context, rdpBitmap* bitmap, UINT8* data,
|
|
int width, int height, int bpp, int length, BOOL compressed, int codec_id) {
|
|
#endif
|
|
|
|
int size = width * height * (bpp + 7) / 8;
|
|
|
|
if (bitmap->data == NULL)
|
|
bitmap->data = (UINT8*) malloc(size);
|
|
else
|
|
bitmap->data = (UINT8*) realloc(bitmap->data, size);
|
|
|
|
if (compressed)
|
|
bitmap_decompress(data, bitmap->data, width, height, length, bpp, bpp);
|
|
else
|
|
freerdp_image_flip(data, bitmap->data, width, height, bpp);
|
|
|
|
bitmap->compressed = FALSE;
|
|
bitmap->length = size;
|
|
bitmap->bpp = bpp;
|
|
|
|
}
|
|
|