2011-08-05 00:22:15 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* Offscreen Bitmap Cache
|
|
|
|
*
|
|
|
|
* 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/utils/stream.h>
|
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
|
2011-08-15 22:33:04 +04:00
|
|
|
#include <freerdp/cache/offscreen.h>
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-11-22 04:53:38 +04:00
|
|
|
void update_gdi_create_offscreen_bitmap(rdpContext* context, CREATE_OFFSCREEN_BITMAP_ORDER* create_offscreen_bitmap)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2011-11-11 10:48:31 +04:00
|
|
|
int i;
|
|
|
|
uint16 index;
|
2011-10-13 23:51:07 +04:00
|
|
|
rdpBitmap* bitmap;
|
2011-11-22 04:53:38 +04:00
|
|
|
rdpCache* cache = context->cache;
|
2011-10-13 23:51:07 +04:00
|
|
|
|
2011-11-22 04:53:38 +04:00
|
|
|
bitmap = Bitmap_Alloc(context);
|
2011-10-13 23:51:07 +04:00
|
|
|
|
2011-10-14 03:32:18 +04:00
|
|
|
bitmap->width = create_offscreen_bitmap->cx;
|
|
|
|
bitmap->height = create_offscreen_bitmap->cy;
|
|
|
|
|
2011-11-22 04:53:38 +04:00
|
|
|
bitmap->New(context, bitmap);
|
2011-10-21 01:28:59 +04:00
|
|
|
|
2011-11-11 10:48:31 +04:00
|
|
|
offscreen_cache_delete(cache->offscreen, create_offscreen_bitmap->id);
|
2011-10-13 23:51:07 +04:00
|
|
|
offscreen_cache_put(cache->offscreen, create_offscreen_bitmap->id, bitmap);
|
2011-10-15 02:59:23 +04:00
|
|
|
|
|
|
|
if(cache->offscreen->currentSurface == create_offscreen_bitmap->id)
|
2011-11-22 04:53:38 +04:00
|
|
|
Bitmap_SetSurface(context, bitmap, false);
|
2011-11-11 10:48:31 +04:00
|
|
|
|
2011-12-04 02:24:18 +04:00
|
|
|
for (i = 0; i < (int) create_offscreen_bitmap->deleteList.cIndices; i++)
|
2011-11-11 10:48:31 +04:00
|
|
|
{
|
|
|
|
index = create_offscreen_bitmap->deleteList.indices[i];
|
|
|
|
offscreen_cache_delete(cache->offscreen, index);
|
|
|
|
}
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 04:53:38 +04:00
|
|
|
void update_gdi_switch_surface(rdpContext* context, SWITCH_SURFACE_ORDER* switch_surface)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
2011-11-22 04:53:38 +04:00
|
|
|
rdpCache* cache = context->cache;
|
2011-10-13 23:51:07 +04:00
|
|
|
|
|
|
|
if (switch_surface->bitmapId == SCREEN_BITMAP_SURFACE)
|
|
|
|
{
|
2011-11-22 04:53:38 +04:00
|
|
|
Bitmap_SetSurface(context, NULL, true);
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rdpBitmap* bitmap;
|
|
|
|
bitmap = offscreen_cache_get(cache->offscreen, switch_surface->bitmapId);
|
2011-11-22 04:53:38 +04:00
|
|
|
Bitmap_SetSurface(context, bitmap, false);
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
2011-10-21 02:18:45 +04:00
|
|
|
|
2011-10-15 02:59:23 +04:00
|
|
|
cache->offscreen->currentSurface = switch_surface->bitmapId;
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2011-11-22 07:11:31 +04:00
|
|
|
rdpBitmap* offscreen_cache_get(rdpOffscreenCache* offscreen_cache, uint32 index)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
|
|
|
rdpBitmap* bitmap;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2012-06-22 00:58:28 +04:00
|
|
|
if (index >= offscreen_cache->maxEntries)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
|
|
|
printf("invalid offscreen bitmap index: 0x%04X\n", index);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-10-13 23:51:07 +04:00
|
|
|
bitmap = offscreen_cache->entries[index];
|
2011-08-05 00:22:15 +04:00
|
|
|
|
|
|
|
if (bitmap == NULL)
|
|
|
|
{
|
|
|
|
printf("invalid offscreen bitmap at index: 0x%04X\n", index);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
2011-11-22 07:11:31 +04:00
|
|
|
void offscreen_cache_put(rdpOffscreenCache* offscreen, uint32 index, rdpBitmap* bitmap)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2012-06-22 00:58:28 +04:00
|
|
|
if (index >= offscreen->maxEntries)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
|
|
|
printf("invalid offscreen bitmap index: 0x%04X\n", index);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-11 10:48:31 +04:00
|
|
|
offscreen_cache_delete(offscreen, index);
|
2011-10-13 23:51:07 +04:00
|
|
|
offscreen->entries[index] = bitmap;
|
|
|
|
}
|
|
|
|
|
2011-11-22 07:11:31 +04:00
|
|
|
void offscreen_cache_delete(rdpOffscreenCache* offscreen, uint32 index)
|
2011-11-11 10:48:31 +04:00
|
|
|
{
|
|
|
|
rdpBitmap* prevBitmap;
|
|
|
|
|
2012-06-22 00:58:28 +04:00
|
|
|
if (index >= offscreen->maxEntries)
|
2011-11-11 10:48:31 +04:00
|
|
|
{
|
|
|
|
printf("invalid offscreen bitmap index (delete): 0x%04X\n", index);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
prevBitmap = offscreen->entries[index];
|
|
|
|
|
|
|
|
if (prevBitmap != NULL)
|
|
|
|
Bitmap_Free(offscreen->update->context, prevBitmap);
|
|
|
|
|
|
|
|
offscreen->entries[index] = NULL;
|
|
|
|
}
|
|
|
|
|
2011-10-13 23:51:07 +04:00
|
|
|
void offscreen_cache_register_callbacks(rdpUpdate* update)
|
|
|
|
{
|
2011-11-22 04:53:38 +04:00
|
|
|
update->altsec->CreateOffscreenBitmap = update_gdi_create_offscreen_bitmap;
|
|
|
|
update->altsec->SwitchSurface = update_gdi_switch_surface;
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
rdpOffscreenCache* offscreen_cache_new(rdpSettings* settings)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2011-10-12 02:51:45 +04:00
|
|
|
rdpOffscreenCache* offscreen_cache;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
offscreen_cache = (rdpOffscreenCache*) xzalloc(sizeof(rdpOffscreenCache));
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
if (offscreen_cache != NULL)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2011-10-12 02:51:45 +04:00
|
|
|
offscreen_cache->settings = settings;
|
2011-10-13 23:51:07 +04:00
|
|
|
offscreen_cache->update = ((freerdp*) settings->instance)->update;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-10-15 02:59:23 +04:00
|
|
|
offscreen_cache->currentSurface = SCREEN_BITMAP_SURFACE;
|
2011-10-12 02:51:45 +04:00
|
|
|
offscreen_cache->maxSize = 7680;
|
2012-06-27 03:52:38 +04:00
|
|
|
offscreen_cache->maxEntries = 2000;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
settings->offscreen_bitmap_cache_size = offscreen_cache->maxSize;
|
|
|
|
settings->offscreen_bitmap_cache_entries = offscreen_cache->maxEntries;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-10-13 23:51:07 +04:00
|
|
|
offscreen_cache->entries = (rdpBitmap**) xzalloc(sizeof(rdpBitmap*) * offscreen_cache->maxEntries);
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
return offscreen_cache;
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
void offscreen_cache_free(rdpOffscreenCache* offscreen_cache)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2011-10-13 23:51:07 +04:00
|
|
|
int i;
|
|
|
|
rdpBitmap* bitmap;
|
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
if (offscreen_cache != NULL)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2011-12-04 02:24:18 +04:00
|
|
|
for (i = 0; i < (int) offscreen_cache->maxEntries; i++)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
|
|
|
bitmap = offscreen_cache->entries[i];
|
|
|
|
|
|
|
|
if (bitmap != NULL)
|
2011-10-21 01:28:59 +04:00
|
|
|
Bitmap_Free(offscreen_cache->update->context, bitmap);
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
xfree(offscreen_cache->entries);
|
|
|
|
xfree(offscreen_cache);
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
}
|