2011-08-05 00:22:15 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-05 00:22:15 +04:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 13:20:38 +03:00
|
|
|
#include <freerdp/config.h>
|
2012-08-15 01:09:01 +04:00
|
|
|
|
2012-09-24 02:41:07 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2012-11-20 08:49:08 +04:00
|
|
|
#include <winpr/crt.h>
|
2021-09-06 15:00:12 +03:00
|
|
|
#include <winpr/assert.h>
|
2013-03-22 00:45:25 +04:00
|
|
|
#include <winpr/stream.h>
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2014-09-12 16:36:29 +04:00
|
|
|
#include <freerdp/log.h>
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2016-10-10 11:38:54 +03:00
|
|
|
#include "../core/graphics.h"
|
|
|
|
|
2023-02-07 17:42:52 +03:00
|
|
|
#include "offscreen.h"
|
|
|
|
#include "cache.h"
|
|
|
|
|
2014-09-12 16:36:29 +04:00
|
|
|
#define TAG FREERDP_TAG("cache.offscreen")
|
|
|
|
|
2019-11-14 17:10:44 +03:00
|
|
|
struct rdp_offscreen_cache
|
|
|
|
{
|
|
|
|
UINT32 maxSize; /* 0 */
|
|
|
|
UINT32 maxEntries; /* 1 */
|
|
|
|
rdpBitmap** entries; /* 2 */
|
|
|
|
UINT32 currentSurface; /* 3 */
|
|
|
|
|
2021-09-06 15:00:12 +03:00
|
|
|
rdpContext* context;
|
2019-11-14 17:10:44 +03:00
|
|
|
};
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static void offscreen_cache_put(rdpOffscreenCache* offscreen_cache, UINT32 index,
|
|
|
|
rdpBitmap* bitmap);
|
2016-04-05 18:07:45 +03:00
|
|
|
static void offscreen_cache_delete(rdpOffscreenCache* offscreen, UINT32 index);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL
|
|
|
|
update_gdi_create_offscreen_bitmap(rdpContext* context,
|
|
|
|
const CREATE_OFFSCREEN_BITMAP_ORDER* createOffscreenBitmap)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
UINT16 index = 0;
|
|
|
|
rdpBitmap* bitmap = NULL;
|
|
|
|
rdpCache* cache = NULL;
|
2017-05-17 16:58:32 +03:00
|
|
|
|
|
|
|
if (!context || !createOffscreenBitmap || !context->cache)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
cache = context->cache;
|
2011-11-22 04:53:38 +04:00
|
|
|
bitmap = Bitmap_Alloc(context);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
if (!bitmap)
|
|
|
|
return FALSE;
|
2011-10-13 23:51:07 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Bitmap_SetDimensions(bitmap, createOffscreenBitmap->cx, createOffscreenBitmap->cy);
|
2011-10-14 03:32:18 +04:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
if (!bitmap->New(context, bitmap))
|
|
|
|
{
|
2017-09-05 11:25:15 +03:00
|
|
|
Bitmap_Free(context, bitmap);
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
2011-10-21 01:28:59 +04:00
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
offscreen_cache_delete(cache->offscreen, createOffscreenBitmap->id);
|
|
|
|
offscreen_cache_put(cache->offscreen, createOffscreenBitmap->id, bitmap);
|
2011-10-15 02:59:23 +04:00
|
|
|
|
2016-07-15 17:23:00 +03:00
|
|
|
if (cache->offscreen->currentSurface == createOffscreenBitmap->id)
|
2016-07-18 15:42:55 +03:00
|
|
|
bitmap->SetSurface(context, bitmap, FALSE);
|
2011-11-11 10:48:31 +04:00
|
|
|
|
2024-01-30 12:25:38 +03:00
|
|
|
for (UINT32 i = 0; i < createOffscreenBitmap->deleteList.cIndices; i++)
|
2011-11-11 10:48:31 +04:00
|
|
|
{
|
2013-11-03 22:51:41 +04:00
|
|
|
index = createOffscreenBitmap->deleteList.indices[i];
|
2011-11-11 10:48:31 +04:00
|
|
|
offscreen_cache_delete(cache->offscreen, index);
|
|
|
|
}
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL update_gdi_switch_surface(rdpContext* context,
|
2016-07-15 17:23:00 +03:00
|
|
|
const SWITCH_SURFACE_ORDER* switchSurface)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpCache* cache = NULL;
|
|
|
|
rdpBitmap* bitmap = NULL;
|
2017-05-17 16:58:32 +03:00
|
|
|
|
|
|
|
if (!context || !context->cache || !switchSurface || !context->graphics)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
cache = context->cache;
|
|
|
|
bitmap = context->graphics->Bitmap_Prototype;
|
|
|
|
if (!bitmap)
|
|
|
|
return FALSE;
|
2011-10-13 23:51:07 +04:00
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
if (switchSurface->bitmapId == SCREEN_BITMAP_SURFACE)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
2016-07-18 15:42:55 +03:00
|
|
|
bitmap->SetSurface(context, NULL, TRUE);
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpBitmap* bmp = NULL;
|
2016-07-19 14:02:08 +03:00
|
|
|
bmp = offscreen_cache_get(cache->offscreen, switchSurface->bitmapId);
|
2017-09-04 19:48:25 +03:00
|
|
|
if (bmp == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2016-07-19 14:02:08 +03:00
|
|
|
bitmap->SetSurface(context, bmp, FALSE);
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
2011-10-21 02:18:45 +04:00
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
cache->offscreen->currentSurface = switchSurface->bitmapId;
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
rdpBitmap* offscreen_cache_get(rdpOffscreenCache* offscreenCache, UINT32 index)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpBitmap* bitmap = NULL;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2021-09-06 15:00:12 +03:00
|
|
|
WINPR_ASSERT(offscreenCache);
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
if (index >= offscreenCache->maxEntries)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "invalid offscreen bitmap index: 0x%08" PRIX32 "", index);
|
2011-08-05 00:22:15 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
bitmap = offscreenCache->entries[index];
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
if (!bitmap)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "invalid offscreen bitmap at index: 0x%08" PRIX32 "", index);
|
2011-08-05 00:22:15 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
void offscreen_cache_put(rdpOffscreenCache* offscreenCache, UINT32 index, rdpBitmap* bitmap)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2021-09-06 15:00:12 +03:00
|
|
|
WINPR_ASSERT(offscreenCache);
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
if (index >= offscreenCache->maxEntries)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "invalid offscreen bitmap index: 0x%08" PRIX32 "", index);
|
2011-08-05 00:22:15 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
offscreen_cache_delete(offscreenCache, index);
|
|
|
|
offscreenCache->entries[index] = bitmap;
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
void offscreen_cache_delete(rdpOffscreenCache* offscreenCache, UINT32 index)
|
2011-11-11 10:48:31 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpBitmap* prevBitmap = NULL;
|
2011-11-11 10:48:31 +04:00
|
|
|
|
2021-09-06 15:00:12 +03:00
|
|
|
WINPR_ASSERT(offscreenCache);
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
if (index >= offscreenCache->maxEntries)
|
2011-11-11 10:48:31 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "invalid offscreen bitmap index (delete): 0x%08" PRIX32 "", index);
|
2011-11-11 10:48:31 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
prevBitmap = offscreenCache->entries[index];
|
2011-11-11 10:48:31 +04:00
|
|
|
|
|
|
|
if (prevBitmap != NULL)
|
2021-09-06 15:00:12 +03:00
|
|
|
Bitmap_Free(offscreenCache->context, prevBitmap);
|
2011-11-11 10:48:31 +04:00
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
offscreenCache->entries[index] = NULL;
|
2011-11-11 10:48:31 +04:00
|
|
|
}
|
|
|
|
|
2011-10-13 23:51:07 +04:00
|
|
|
void offscreen_cache_register_callbacks(rdpUpdate* update)
|
|
|
|
{
|
2021-09-06 15:00:12 +03:00
|
|
|
WINPR_ASSERT(update);
|
|
|
|
WINPR_ASSERT(update->altsec);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-09-06 15:00:12 +03:00
|
|
|
rdpOffscreenCache* offscreen_cache_new(rdpContext* context)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2024-01-23 18:49:54 +03:00
|
|
|
rdpOffscreenCache* offscreenCache = NULL;
|
|
|
|
rdpSettings* settings = NULL;
|
2021-09-06 15:00:12 +03:00
|
|
|
|
|
|
|
WINPR_ASSERT(context);
|
|
|
|
|
|
|
|
settings = context->settings;
|
|
|
|
WINPR_ASSERT(settings);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
offscreenCache = (rdpOffscreenCache*)calloc(1, sizeof(rdpOffscreenCache));
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!offscreenCache)
|
|
|
|
return NULL;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2021-09-06 15:00:12 +03:00
|
|
|
offscreenCache->context = context;
|
2015-06-16 16:42:07 +03:00
|
|
|
offscreenCache->currentSurface = SCREEN_BITMAP_SURFACE;
|
|
|
|
offscreenCache->maxSize = 7680;
|
|
|
|
offscreenCache->maxEntries = 2000;
|
2022-04-28 09:00:39 +03:00
|
|
|
if (!freerdp_settings_set_uint32(settings, FreeRDP_OffscreenCacheSize, offscreenCache->maxSize))
|
|
|
|
goto fail;
|
|
|
|
if (!freerdp_settings_set_uint32(settings, FreeRDP_OffscreenCacheEntries,
|
|
|
|
offscreenCache->maxEntries))
|
|
|
|
goto fail;
|
2019-11-06 17:24:51 +03:00
|
|
|
offscreenCache->entries = (rdpBitmap**)calloc(offscreenCache->maxEntries, sizeof(rdpBitmap*));
|
2013-11-03 22:51:41 +04:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!offscreenCache->entries)
|
2022-04-28 09:00:39 +03:00
|
|
|
goto fail;
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
return offscreenCache;
|
2022-04-28 09:00:39 +03:00
|
|
|
fail:
|
2024-02-04 13:11:29 +03:00
|
|
|
WINPR_PRAGMA_DIAG_PUSH
|
|
|
|
WINPR_PRAGMA_DIAG_IGNORED_MISMATCHED_DEALLOC
|
2022-04-28 09:00:39 +03:00
|
|
|
offscreen_cache_free(offscreenCache);
|
2024-02-04 13:11:29 +03:00
|
|
|
WINPR_PRAGMA_DIAG_POP
|
2022-04-28 09:00:39 +03:00
|
|
|
return NULL;
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
void offscreen_cache_free(rdpOffscreenCache* offscreenCache)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2013-11-03 22:51:41 +04:00
|
|
|
if (offscreenCache)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
2022-04-28 09:00:39 +03:00
|
|
|
if (offscreenCache->entries)
|
2011-10-13 23:51:07 +04:00
|
|
|
{
|
2024-01-30 12:25:38 +03:00
|
|
|
for (size_t i = 0; i < offscreenCache->maxEntries; i++)
|
2022-04-28 09:00:39 +03:00
|
|
|
{
|
|
|
|
rdpBitmap* bitmap = offscreenCache->entries[i];
|
|
|
|
Bitmap_Free(offscreenCache->context, bitmap);
|
|
|
|
}
|
2011-10-13 23:51:07 +04:00
|
|
|
}
|
|
|
|
|
2013-11-03 22:51:41 +04:00
|
|
|
free(offscreenCache->entries);
|
|
|
|
free(offscreenCache);
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
}
|