2018-06-03 09:01:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* ftcmru.h
|
|
|
|
*
|
|
|
|
* Simple MRU list-cache (specification).
|
|
|
|
*
|
2020-01-19 17:05:19 +01:00
|
|
|
* Copyright (C) 2000-2020 by
|
2018-06-03 09:01:17 +02:00
|
|
|
* David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
*
|
|
|
|
* This file is part of the FreeType project, and may only be used,
|
|
|
|
* modified, and distributed under the terms of the FreeType project
|
|
|
|
* license, LICENSE.TXT. By continuing to use, modify, or distribute
|
|
|
|
* this file you indicate that you have read the license and
|
|
|
|
* understand and accept it fully.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* An MRU is a list that cannot hold more than a certain number of
|
|
|
|
* elements (`max_elements'). All elements in the list are sorted in
|
|
|
|
* least-recently-used order, i.e., the `oldest' element is at the tail
|
|
|
|
* of the list.
|
|
|
|
*
|
|
|
|
* When doing a lookup (either through `Lookup()' or `Lookup_Node()'),
|
|
|
|
* the list is searched for an element with the corresponding key. If
|
|
|
|
* it is found, the element is moved to the head of the list and is
|
|
|
|
* returned.
|
|
|
|
*
|
|
|
|
* If no corresponding element is found, the lookup routine will try to
|
|
|
|
* obtain a new element with the relevant key. If the list is already
|
|
|
|
* full, the oldest element from the list is discarded and replaced by a
|
|
|
|
* new one; a new element is added to the list otherwise.
|
|
|
|
*
|
|
|
|
* Note that it is possible to pre-allocate the element list nodes.
|
|
|
|
* This is handy if `max_elements' is sufficiently small, as it saves
|
|
|
|
* allocations/releases during the lookup process.
|
|
|
|
*
|
|
|
|
*/
|
2006-03-20 12:48:13 +01:00
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef FTCMRU_H_
|
|
|
|
#define FTCMRU_H_
|
2006-03-20 12:48:13 +01:00
|
|
|
|
|
|
|
|
2020-06-08 13:31:55 +02:00
|
|
|
#include <freetype/freetype.h>
|
2006-03-20 12:48:13 +01:00
|
|
|
|
|
|
|
#ifdef FREETYPE_H
|
|
|
|
#error "freetype.h of FreeType 1 has been loaded!"
|
|
|
|
#error "Please fix the directory search order for header files"
|
|
|
|
#error "so that freetype.h of FreeType 2 is found first."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define xxFT_DEBUG_ERROR
|
|
|
|
#define FTC_INLINE
|
|
|
|
|
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
|
|
|
typedef struct FTC_MruNodeRec_* FTC_MruNode;
|
|
|
|
|
|
|
|
typedef struct FTC_MruNodeRec_
|
|
|
|
{
|
|
|
|
FTC_MruNode next;
|
|
|
|
FTC_MruNode prev;
|
|
|
|
|
|
|
|
} FTC_MruNodeRec;
|
|
|
|
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruNode_Prepend( FTC_MruNode *plist,
|
|
|
|
FTC_MruNode node );
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruNode_Up( FTC_MruNode *plist,
|
|
|
|
FTC_MruNode node );
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruNode_Remove( FTC_MruNode *plist,
|
|
|
|
FTC_MruNode node );
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct FTC_MruListRec_* FTC_MruList;
|
|
|
|
|
|
|
|
typedef struct FTC_MruListClassRec_ const * FTC_MruListClass;
|
|
|
|
|
|
|
|
|
|
|
|
typedef FT_Bool
|
|
|
|
(*FTC_MruNode_CompareFunc)( FTC_MruNode node,
|
|
|
|
FT_Pointer key );
|
|
|
|
|
|
|
|
typedef FT_Error
|
|
|
|
(*FTC_MruNode_InitFunc)( FTC_MruNode node,
|
|
|
|
FT_Pointer key,
|
|
|
|
FT_Pointer data );
|
|
|
|
|
|
|
|
typedef FT_Error
|
|
|
|
(*FTC_MruNode_ResetFunc)( FTC_MruNode node,
|
|
|
|
FT_Pointer key,
|
|
|
|
FT_Pointer data );
|
|
|
|
|
|
|
|
typedef void
|
|
|
|
(*FTC_MruNode_DoneFunc)( FTC_MruNode node,
|
|
|
|
FT_Pointer data );
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct FTC_MruListClassRec_
|
|
|
|
{
|
2009-07-31 17:32:10 +02:00
|
|
|
FT_Offset node_size;
|
2016-09-17 17:12:50 +02:00
|
|
|
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruNode_CompareFunc node_compare;
|
|
|
|
FTC_MruNode_InitFunc node_init;
|
|
|
|
FTC_MruNode_ResetFunc node_reset;
|
|
|
|
FTC_MruNode_DoneFunc node_done;
|
|
|
|
|
|
|
|
} FTC_MruListClassRec;
|
|
|
|
|
2016-09-17 17:12:50 +02:00
|
|
|
|
2006-03-20 12:48:13 +01:00
|
|
|
typedef struct FTC_MruListRec_
|
|
|
|
{
|
|
|
|
FT_UInt num_nodes;
|
|
|
|
FT_UInt max_nodes;
|
|
|
|
FTC_MruNode nodes;
|
|
|
|
FT_Pointer data;
|
|
|
|
FTC_MruListClassRec clazz;
|
|
|
|
FT_Memory memory;
|
|
|
|
|
|
|
|
} FTC_MruListRec;
|
|
|
|
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruList_Init( FTC_MruList list,
|
|
|
|
FTC_MruListClass clazz,
|
|
|
|
FT_UInt max_nodes,
|
|
|
|
FT_Pointer data,
|
|
|
|
FT_Memory memory );
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruList_Reset( FTC_MruList list );
|
|
|
|
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruList_Done( FTC_MruList list );
|
|
|
|
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruList_New( FTC_MruList list,
|
|
|
|
FT_Pointer key,
|
|
|
|
FTC_MruNode *anode );
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruList_Remove( FTC_MruList list,
|
|
|
|
FTC_MruNode node );
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( void )
|
2006-03-20 12:48:13 +01:00
|
|
|
FTC_MruList_RemoveSelection( FTC_MruList list,
|
|
|
|
FTC_MruNode_CompareFunc selection,
|
|
|
|
FT_Pointer key );
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef FTC_INLINE
|
|
|
|
|
|
|
|
#define FTC_MRULIST_LOOKUP_CMP( list, key, compare, node, error ) \
|
|
|
|
FT_BEGIN_STMNT \
|
|
|
|
FTC_MruNode* _pfirst = &(list)->nodes; \
|
|
|
|
FTC_MruNode_CompareFunc _compare = (FTC_MruNode_CompareFunc)(compare); \
|
2009-09-27 09:55:44 +02:00
|
|
|
FTC_MruNode _first, _node; \
|
2006-03-20 12:48:13 +01:00
|
|
|
\
|
|
|
|
\
|
2013-03-14 11:21:17 +01:00
|
|
|
error = FT_Err_Ok; \
|
2006-03-20 12:48:13 +01:00
|
|
|
_first = *(_pfirst); \
|
|
|
|
_node = NULL; \
|
|
|
|
\
|
|
|
|
if ( _first ) \
|
|
|
|
{ \
|
|
|
|
_node = _first; \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if ( _compare( _node, (key) ) ) \
|
|
|
|
{ \
|
|
|
|
if ( _node != _first ) \
|
|
|
|
FTC_MruNode_Up( _pfirst, _node ); \
|
|
|
|
\
|
2009-09-27 09:55:44 +02:00
|
|
|
node = _node; \
|
2016-01-12 22:28:14 +01:00
|
|
|
goto MruOk_; \
|
2006-03-20 12:48:13 +01:00
|
|
|
} \
|
|
|
|
_node = _node->next; \
|
|
|
|
\
|
2016-02-15 12:54:40 +01:00
|
|
|
} while ( _node != _first); \
|
2006-03-20 12:48:13 +01:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
error = FTC_MruList_New( (list), (key), (FTC_MruNode*)(void*)&(node) ); \
|
2016-01-12 22:28:14 +01:00
|
|
|
MruOk_: \
|
2006-03-20 12:48:13 +01:00
|
|
|
; \
|
|
|
|
FT_END_STMNT
|
|
|
|
|
|
|
|
#define FTC_MRULIST_LOOKUP( list, key, node, error ) \
|
|
|
|
FTC_MRULIST_LOOKUP_CMP( list, key, (list)->clazz.node_compare, node, error )
|
|
|
|
|
|
|
|
#else /* !FTC_INLINE */
|
|
|
|
|
* include/freetype/cache/ftccache.h,
include/freetype/cache/ftccmap.h,
include/freetype/cache/ftcglyph.h
include/freetype/cache/ftcimage.h
include/freetype/cache/ftcmanag.h
include/freetype/cache/ftcmru.h
include/freetype/cache/ftcsbits.h:
removing these header files from the public include directory.
* include/freetype/config/ftheader.h:
changing the definition of FT_CACHE_INTERNAL_XXX_H macros to
redirect to FT_CACHE_H instead
* src/cache/ftcbasic.c, src/cache/ftccache.c, src/cache/ftccache.h,
src/cache/ftccback.h, src/cache/ftccmap.c, src/cache/ftcglyph.c,
src/cache/ftcglyph.h, src/cache/ftcimage.c, src/cache/ftcimage.h,
src/cache/ftcmanag.c, src/cache/ftcmanag.h, src/cache/ftcmru.c,
src/cache/ftcmru.h, src/cache/ftcsbits.c, src/cache/ftcsbits.h:
modifications to prevent using the FT_CACHE_INTERNAL_XXX_H macros,
and grab the headers in 'src/cache' instead (see below).
2006-03-20 13:10:24 +01:00
|
|
|
FT_LOCAL( FTC_MruNode )
|
|
|
|
FTC_MruList_Find( FTC_MruList list,
|
|
|
|
FT_Pointer key );
|
|
|
|
|
|
|
|
FT_LOCAL( FT_Error )
|
|
|
|
FTC_MruList_Lookup( FTC_MruList list,
|
|
|
|
FT_Pointer key,
|
|
|
|
FTC_MruNode *pnode );
|
|
|
|
|
2006-03-20 12:48:13 +01:00
|
|
|
#define FTC_MRULIST_LOOKUP( list, key, node, error ) \
|
|
|
|
error = FTC_MruList_Lookup( (list), (key), (FTC_MruNode*)&(node) )
|
|
|
|
|
|
|
|
#endif /* !FTC_INLINE */
|
|
|
|
|
|
|
|
|
|
|
|
#define FTC_MRULIST_LOOP( list, node ) \
|
|
|
|
FT_BEGIN_STMNT \
|
|
|
|
FTC_MruNode _first = (list)->nodes; \
|
|
|
|
\
|
|
|
|
\
|
|
|
|
if ( _first ) \
|
|
|
|
{ \
|
|
|
|
FTC_MruNode _node = _first; \
|
|
|
|
\
|
|
|
|
\
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
*(FTC_MruNode*)&(node) = _node;
|
|
|
|
|
|
|
|
|
|
|
|
#define FTC_MRULIST_LOOP_END() \
|
|
|
|
_node = _node->next; \
|
|
|
|
\
|
|
|
|
} while ( _node != _first ); \
|
|
|
|
} \
|
|
|
|
FT_END_STMNT
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
FT_END_HEADER
|
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* FTCMRU_H_ */
|
2006-03-20 12:48:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|