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
|
|
|
* RDP Caches
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-11-20 08:49:08 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
|
2013-03-22 00:45:25 +04:00
|
|
|
#include <winpr/stream.h>
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-08-15 22:33:04 +04:00
|
|
|
#include <freerdp/cache/cache.h>
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2011-08-05 06:43:36 +04:00
|
|
|
rdpCache* cache_new(rdpSettings* settings)
|
2011-08-05 00:22:15 +04:00
|
|
|
{
|
|
|
|
rdpCache* cache;
|
2015-06-16 16:42:07 +03:00
|
|
|
cache = (rdpCache*) calloc(1, sizeof(rdpCache));
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!cache)
|
|
|
|
return NULL;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
cache->glyph = glyph_cache_new(settings);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!cache->glyph)
|
2016-07-15 17:23:00 +03:00
|
|
|
goto error;
|
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
cache->brush = brush_cache_new(settings);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-17 13:23:14 +03:00
|
|
|
if (!cache->brush)
|
2016-07-15 17:23:00 +03:00
|
|
|
goto error;
|
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
cache->pointer = pointer_cache_new(settings);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!cache->pointer)
|
2016-07-15 17:23:00 +03:00
|
|
|
goto error;
|
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
cache->bitmap = bitmap_cache_new(settings);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!cache->bitmap)
|
2016-07-15 17:23:00 +03:00
|
|
|
goto error;
|
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
cache->offscreen = offscreen_cache_new(settings);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!cache->offscreen)
|
2016-07-15 17:23:00 +03:00
|
|
|
goto error;
|
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
cache->palette = palette_cache_new(settings);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!cache->palette)
|
2016-07-15 17:23:00 +03:00
|
|
|
goto error;
|
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
cache->nine_grid = nine_grid_cache_new(settings);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!cache->nine_grid)
|
2016-07-15 17:23:00 +03:00
|
|
|
goto error;
|
2011-08-05 00:22:15 +04:00
|
|
|
|
|
|
|
return cache;
|
2016-07-15 17:23:00 +03:00
|
|
|
error:
|
|
|
|
cache_free(cache);
|
2015-06-16 16:42:07 +03:00
|
|
|
return NULL;
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cache_free(rdpCache* cache)
|
|
|
|
{
|
|
|
|
if (cache != NULL)
|
|
|
|
{
|
2011-10-12 02:51:45 +04:00
|
|
|
glyph_cache_free(cache->glyph);
|
|
|
|
brush_cache_free(cache->brush);
|
|
|
|
pointer_cache_free(cache->pointer);
|
|
|
|
bitmap_cache_free(cache->bitmap);
|
|
|
|
offscreen_cache_free(cache->offscreen);
|
2011-11-11 11:07:53 +04:00
|
|
|
palette_cache_free(cache->palette);
|
2012-02-13 05:29:33 +04:00
|
|
|
nine_grid_cache_free(cache->nine_grid);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(cache);
|
2011-08-05 00:22:15 +04:00
|
|
|
}
|
|
|
|
}
|