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-10-12 02:51:45 +04:00
|
|
|
void* offscreen_cache_get(rdpOffscreenCache* offscreen_cache, uint16 index)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
|
|
|
void* bitmap;
|
|
|
|
|
2011-10-12 02:51:45 +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-12 02:51:45 +04:00
|
|
|
bitmap = offscreen_cache->entries[index].bitmap;
|
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-10-12 02:51:45 +04:00
|
|
|
void offscreen_cache_put(rdpOffscreenCache* offscreen, uint16 index, void* bitmap)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2011-08-05 06:43:36 +04:00
|
|
|
if (index > offscreen->maxEntries)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
|
|
|
printf("invalid offscreen bitmap index: 0x%04X\n", index);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
offscreen->entries[index].bitmap = bitmap;
|
|
|
|
}
|
|
|
|
|
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-08-05 00:22:15 +04:00
|
|
|
|
2011-10-12 02:51:45 +04:00
|
|
|
offscreen_cache->maxSize = 7680;
|
|
|
|
offscreen_cache->maxEntries = 100;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
|
|
|
settings->offscreen_bitmap_cache = True;
|
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-12 02:51:45 +04:00
|
|
|
offscreen_cache->entries = (OFFSCREEN_ENTRY*) xzalloc(sizeof(OFFSCREEN_ENTRY) * 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-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
|
|
|
xfree(offscreen_cache->entries);
|
|
|
|
xfree(offscreen_cache);
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
}
|