mirror of https://github.com/FreeRDP/FreeRDP
248 lines
6.7 KiB
C
248 lines
6.7 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
* Bitmap Cache V2
|
|
*
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <freerdp/freerdp.h>
|
|
#include <freerdp/utils/stream.h>
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
#include <freerdp/cache/bitmap.h>
|
|
|
|
void update_gdi_memblt(rdpUpdate* update, MEMBLT_ORDER* memblt)
|
|
{
|
|
rdpBitmap* bitmap;
|
|
rdpCache* cache = update->context->cache;
|
|
|
|
if (memblt->cacheId == 0xFF)
|
|
bitmap = offscreen_cache_get(cache->offscreen, memblt->cacheIndex);
|
|
else
|
|
bitmap = bitmap_cache_get(cache->bitmap, memblt->cacheId, memblt->cacheIndex);
|
|
|
|
memblt->bitmap = bitmap;
|
|
IFCALL(cache->bitmap->MemBlt, update, memblt);
|
|
}
|
|
|
|
void update_gdi_mem3blt(rdpUpdate* update, MEM3BLT_ORDER* mem3blt)
|
|
{
|
|
rdpBitmap* bitmap;
|
|
rdpCache* cache = update->context->cache;
|
|
|
|
if (mem3blt->cacheId == 0xFF)
|
|
bitmap = offscreen_cache_get(cache->offscreen, mem3blt->cacheIndex);
|
|
else
|
|
bitmap = bitmap_cache_get(cache->bitmap, mem3blt->cacheId, mem3blt->cacheIndex);
|
|
|
|
mem3blt->bitmap = bitmap;
|
|
IFCALL(cache->bitmap->Mem3Blt, update, mem3blt);
|
|
}
|
|
|
|
void update_gdi_cache_bitmap(rdpUpdate* update, CACHE_BITMAP_V2_ORDER* cache_bitmap)
|
|
{
|
|
rdpBitmap* bitmap;
|
|
rdpBitmap* prevBitmap;
|
|
rdpCache* cache = update->context->cache;
|
|
|
|
bitmap = Bitmap_Alloc(update->context);
|
|
|
|
Bitmap_SetDimensions(update->context, bitmap, cache_bitmap->bitmapWidth, cache_bitmap->bitmapHeight);
|
|
|
|
bitmap->Decompress(update->context, bitmap,
|
|
cache_bitmap->bitmapDataStream, cache_bitmap->bitmapWidth, cache_bitmap->bitmapHeight,
|
|
cache_bitmap->bitmapBpp, cache_bitmap->bitmapLength, cache_bitmap->compressed);
|
|
|
|
bitmap->New(update->context, bitmap);
|
|
|
|
prevBitmap = bitmap_cache_get(cache->bitmap, cache_bitmap->cacheId, cache_bitmap->cacheIndex);
|
|
|
|
if (prevBitmap != NULL)
|
|
Bitmap_Free(update->context, prevBitmap);
|
|
|
|
bitmap_cache_put(cache->bitmap, cache_bitmap->cacheId, cache_bitmap->cacheIndex, bitmap);
|
|
}
|
|
|
|
void update_gdi_bitmap_update(rdpUpdate* update, BITMAP_UPDATE* bitmap_update)
|
|
{
|
|
int i;
|
|
rdpBitmap* bitmap;
|
|
BITMAP_DATA* bitmap_data;
|
|
rdpCache* cache = update->context->cache;
|
|
int reused = 1;
|
|
|
|
if (cache->bitmap->bitmap == NULL)
|
|
{
|
|
cache->bitmap->bitmap = Bitmap_Alloc(update->context);
|
|
cache->bitmap->bitmap->ephemeral = True;
|
|
reused = 0;
|
|
}
|
|
|
|
bitmap = cache->bitmap->bitmap;
|
|
|
|
for (i = 0; i < bitmap_update->number; i++)
|
|
{
|
|
bitmap_data = &bitmap_update->rectangles[i];
|
|
|
|
bitmap->bpp = bitmap_data->bitsPerPixel;
|
|
bitmap->length = bitmap_data->bitmapLength;
|
|
|
|
Bitmap_SetRectangle(update->context, bitmap,
|
|
bitmap_data->destLeft, bitmap_data->destTop,
|
|
bitmap_data->destRight, bitmap_data->destBottom);
|
|
|
|
Bitmap_SetDimensions(update->context, bitmap, bitmap_data->width, bitmap_data->height);
|
|
|
|
bitmap->Decompress(update->context, bitmap,
|
|
bitmap_data->bitmapDataStream, bitmap_data->width, bitmap_data->height,
|
|
bitmap_data->bitsPerPixel, bitmap_data->bitmapLength, bitmap_data->compressed);
|
|
|
|
if (reused)
|
|
bitmap->Free(update->context, bitmap);
|
|
else
|
|
reused = 1;
|
|
|
|
bitmap->New(update->context, bitmap);
|
|
|
|
bitmap->Paint(update->context, bitmap);
|
|
}
|
|
}
|
|
|
|
rdpBitmap* bitmap_cache_get(rdpBitmapCache* bitmap_cache, uint8 id, uint16 index)
|
|
{
|
|
rdpBitmap* bitmap;
|
|
|
|
if (id > bitmap_cache->maxCells)
|
|
{
|
|
printf("get invalid bitmap cell id: %d\n", id);
|
|
return NULL;
|
|
}
|
|
|
|
if (index == 0x7FFF)
|
|
index = bitmap_cache->cells[id].number - 1;
|
|
|
|
if (index > bitmap_cache->cells[id].number)
|
|
{
|
|
printf("get invalid bitmap index %d in cell id: %d\n", index, id);
|
|
return NULL;
|
|
}
|
|
|
|
bitmap = bitmap_cache->cells[id].entries[index];
|
|
|
|
return bitmap;
|
|
}
|
|
|
|
void bitmap_cache_put(rdpBitmapCache* bitmap_cache, uint8 id, uint16 index, rdpBitmap* bitmap)
|
|
{
|
|
if (id > bitmap_cache->maxCells)
|
|
{
|
|
printf("put invalid bitmap cell id: %d\n", id);
|
|
return;
|
|
}
|
|
|
|
if (index == 0x7FFF)
|
|
index = bitmap_cache->cells[id].number - 1;
|
|
|
|
if (index > bitmap_cache->cells[id].number)
|
|
{
|
|
printf("put invalid bitmap index %d in cell id: %d\n", index, id);
|
|
return;
|
|
}
|
|
|
|
bitmap_cache->cells[id].entries[index] = bitmap;
|
|
}
|
|
|
|
void bitmap_cache_register_callbacks(rdpUpdate* update)
|
|
{
|
|
rdpCache* cache = update->context->cache;
|
|
|
|
cache->bitmap->MemBlt = update->MemBlt;
|
|
cache->bitmap->Mem3Blt = update->Mem3Blt;
|
|
|
|
update->MemBlt = update_gdi_memblt;
|
|
update->Mem3Blt = update_gdi_mem3blt;
|
|
update->CacheBitmapV2 = update_gdi_cache_bitmap;
|
|
update->BitmapUpdate = update_gdi_bitmap_update;
|
|
}
|
|
|
|
rdpBitmapCache* bitmap_cache_new(rdpSettings* settings)
|
|
{
|
|
int i;
|
|
rdpBitmapCache* bitmap_cache;
|
|
|
|
bitmap_cache = (rdpBitmapCache*) xzalloc(sizeof(rdpBitmapCache));
|
|
|
|
if (bitmap_cache != NULL)
|
|
{
|
|
bitmap_cache->settings = settings;
|
|
bitmap_cache->update = ((freerdp*) settings->instance)->update;
|
|
bitmap_cache->context = bitmap_cache->update->context;
|
|
|
|
bitmap_cache->maxCells = 5;
|
|
|
|
settings->bitmap_cache = False;
|
|
settings->bitmapCacheV2NumCells = 5;
|
|
settings->bitmapCacheV2CellInfo[0].numEntries = 600;
|
|
settings->bitmapCacheV2CellInfo[0].persistent = False;
|
|
settings->bitmapCacheV2CellInfo[1].numEntries = 600;
|
|
settings->bitmapCacheV2CellInfo[1].persistent = False;
|
|
settings->bitmapCacheV2CellInfo[2].numEntries = 2048;
|
|
settings->bitmapCacheV2CellInfo[2].persistent = False;
|
|
settings->bitmapCacheV2CellInfo[3].numEntries = 4096;
|
|
settings->bitmapCacheV2CellInfo[3].persistent = False;
|
|
settings->bitmapCacheV2CellInfo[4].numEntries = 2048;
|
|
settings->bitmapCacheV2CellInfo[4].persistent = False;
|
|
|
|
bitmap_cache->cells = (BITMAP_V2_CELL*) xzalloc(sizeof(BITMAP_V2_CELL) * bitmap_cache->maxCells);
|
|
|
|
for (i = 0; i < bitmap_cache->maxCells; i++)
|
|
{
|
|
bitmap_cache->cells[i].number = settings->bitmapCacheV2CellInfo[i].numEntries;
|
|
bitmap_cache->cells[i].entries = (rdpBitmap**) xzalloc(sizeof(rdpBitmap*) * bitmap_cache->cells[i].number);
|
|
}
|
|
}
|
|
|
|
return bitmap_cache;
|
|
}
|
|
|
|
void bitmap_cache_free(rdpBitmapCache* bitmap_cache)
|
|
{
|
|
int i, j;
|
|
rdpBitmap* bitmap;
|
|
|
|
if (bitmap_cache != NULL)
|
|
{
|
|
for (i = 0; i < bitmap_cache->maxCells; i++)
|
|
{
|
|
for (j = 0; j < (int) bitmap_cache->cells[i].number; j++)
|
|
{
|
|
bitmap = bitmap_cache->cells[i].entries[j];
|
|
|
|
if (bitmap != NULL)
|
|
{
|
|
Bitmap_Free(bitmap_cache->context, bitmap);
|
|
}
|
|
}
|
|
|
|
xfree(bitmap_cache->cells[i].entries);
|
|
}
|
|
|
|
bitmap_cache->bitmap->Free(bitmap_cache->context, bitmap);
|
|
|
|
xfree(bitmap_cache->cells);
|
|
xfree(bitmap_cache);
|
|
}
|
|
}
|