FreeRDP/libfreerdp/cache/offscreen.c

183 lines
4.6 KiB
C
Raw Normal View History

/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
* 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.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <winpr/crt.h>
#include <winpr/stream.h>
#include <freerdp/log.h>
#include <freerdp/cache/offscreen.h>
#define TAG FREERDP_TAG("cache.offscreen")
2013-11-03 22:51:41 +04:00
void update_gdi_create_offscreen_bitmap(rdpContext* context, CREATE_OFFSCREEN_BITMAP_ORDER* createOffscreenBitmap)
{
int i;
UINT16 index;
rdpBitmap* bitmap;
rdpCache* cache = context->cache;
bitmap = Bitmap_Alloc(context);
2013-11-03 22:51:41 +04:00
bitmap->width = createOffscreenBitmap->cx;
bitmap->height = createOffscreenBitmap->cy;
bitmap->New(context, bitmap);
2013-11-03 22:51:41 +04:00
offscreen_cache_delete(cache->offscreen, createOffscreenBitmap->id);
offscreen_cache_put(cache->offscreen, createOffscreenBitmap->id, bitmap);
2013-11-03 22:51:41 +04:00
if(cache->offscreen->currentSurface == createOffscreenBitmap->id)
Bitmap_SetSurface(context, bitmap, FALSE);
2013-11-03 22:51:41 +04:00
for (i = 0; i < (int) createOffscreenBitmap->deleteList.cIndices; i++)
{
2013-11-03 22:51:41 +04:00
index = createOffscreenBitmap->deleteList.indices[i];
offscreen_cache_delete(cache->offscreen, index);
}
}
2013-11-03 22:51:41 +04:00
void update_gdi_switch_surface(rdpContext* context, SWITCH_SURFACE_ORDER* switchSurface)
{
rdpCache* cache = context->cache;
2013-11-03 22:51:41 +04:00
if (switchSurface->bitmapId == SCREEN_BITMAP_SURFACE)
{
Bitmap_SetSurface(context, NULL, TRUE);
}
else
{
rdpBitmap* bitmap;
2013-11-03 22:51:41 +04:00
bitmap = offscreen_cache_get(cache->offscreen, switchSurface->bitmapId);
Bitmap_SetSurface(context, bitmap, FALSE);
}
2011-10-21 02:18:45 +04:00
2013-11-03 22:51:41 +04:00
cache->offscreen->currentSurface = switchSurface->bitmapId;
}
2013-11-03 22:51:41 +04:00
rdpBitmap* offscreen_cache_get(rdpOffscreenCache* offscreenCache, UINT32 index)
{
rdpBitmap* bitmap;
2013-11-03 22:51:41 +04:00
if (index >= offscreenCache->maxEntries)
{
WLog_ERR(TAG, "invalid offscreen bitmap index: 0x%04X", index);
return NULL;
}
2013-11-03 22:51:41 +04:00
bitmap = offscreenCache->entries[index];
2013-11-03 22:51:41 +04:00
if (!bitmap)
{
WLog_ERR(TAG, "invalid offscreen bitmap at index: 0x%04X", index);
return NULL;
}
return bitmap;
}
2013-11-03 22:51:41 +04:00
void offscreen_cache_put(rdpOffscreenCache* offscreenCache, UINT32 index, rdpBitmap* bitmap)
{
2013-11-03 22:51:41 +04:00
if (index >= offscreenCache->maxEntries)
{
WLog_ERR(TAG, "invalid offscreen bitmap index: 0x%04X", index);
return;
}
2013-11-03 22:51:41 +04:00
offscreen_cache_delete(offscreenCache, index);
offscreenCache->entries[index] = bitmap;
}
2013-11-03 22:51:41 +04:00
void offscreen_cache_delete(rdpOffscreenCache* offscreenCache, UINT32 index)
{
rdpBitmap* prevBitmap;
2013-11-03 22:51:41 +04:00
if (index >= offscreenCache->maxEntries)
{
WLog_ERR(TAG, "invalid offscreen bitmap index (delete): 0x%04X", index);
return;
}
2013-11-03 22:51:41 +04:00
prevBitmap = offscreenCache->entries[index];
if (prevBitmap != NULL)
2013-11-03 22:51:41 +04:00
Bitmap_Free(offscreenCache->update->context, prevBitmap);
2013-11-03 22:51:41 +04:00
offscreenCache->entries[index] = NULL;
}
void offscreen_cache_register_callbacks(rdpUpdate* update)
{
update->altsec->CreateOffscreenBitmap = update_gdi_create_offscreen_bitmap;
update->altsec->SwitchSurface = update_gdi_switch_surface;
}
rdpOffscreenCache* offscreen_cache_new(rdpSettings* settings)
{
2013-11-03 22:51:41 +04:00
rdpOffscreenCache* offscreenCache;
2013-11-03 22:51:41 +04:00
offscreenCache = (rdpOffscreenCache*) malloc(sizeof(rdpOffscreenCache));
2013-11-03 22:51:41 +04:00
if (offscreenCache)
{
2013-11-03 22:51:41 +04:00
ZeroMemory(offscreenCache, sizeof(rdpOffscreenCache));
2013-11-03 22:51:41 +04:00
offscreenCache->settings = settings;
offscreenCache->update = ((freerdp*) settings->instance)->update;
2013-11-03 22:51:41 +04:00
offscreenCache->currentSurface = SCREEN_BITMAP_SURFACE;
offscreenCache->maxSize = 7680;
offscreenCache->maxEntries = 2000;
2013-11-03 22:51:41 +04:00
settings->OffscreenCacheSize = offscreenCache->maxSize;
settings->OffscreenCacheEntries = offscreenCache->maxEntries;
offscreenCache->entries = (rdpBitmap**) malloc(sizeof(rdpBitmap*) * offscreenCache->maxEntries);
ZeroMemory(offscreenCache->entries, sizeof(rdpBitmap*) * offscreenCache->maxEntries);
}
2013-11-03 22:51:41 +04:00
return offscreenCache;
}
2013-11-03 22:51:41 +04:00
void offscreen_cache_free(rdpOffscreenCache* offscreenCache)
{
int i;
rdpBitmap* bitmap;
2013-11-03 22:51:41 +04:00
if (offscreenCache)
{
2013-11-03 22:51:41 +04:00
for (i = 0; i < (int) offscreenCache->maxEntries; i++)
{
2013-11-03 22:51:41 +04:00
bitmap = offscreenCache->entries[i];
2013-11-03 22:51:41 +04:00
if (bitmap)
Bitmap_Free(offscreenCache->update->context, bitmap);
}
2013-11-03 22:51:41 +04:00
free(offscreenCache->entries);
free(offscreenCache);
}
}