Hash :
ebdce834
        
        Author :
  
        
        Date :
2000-09-19T01:11:11
        
      
updated the cache sub-system. Major internal rewrite please be aware that major bug persist..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
/***************************************************************************/
/*                                                                         */
/*  ftcglyph.c                                                             */
/*                                                                         */
/*    FreeType Glyph Image (FT_Glyph) cache..                              */
/*                                                                         */
/*  Copyright 2000 by                                                      */
/*  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.                                        */
/*                                                                         */
/*                                                                         */
/*  Note: the implementation of glyph queues is rather generic in this     */
/*        code. This will allow other glyph node/cache types to be         */
/*        easily included in the future.. For now, we only cache           */
/*        glyph images..                                                   */
/*                                                                         */
/***************************************************************************/
#include <freetype/cache/ftcglyph.h>
#include <freetype/fterrors.h>
#include <freetype/internal/ftobjs.h>
#include <freetype/internal/ftlist.h>
#include <freetype/fterrors.h>
 /*************************************************************************/
 /*************************************************************************/
 /*****                                                               *****/
 /*****                      GLYPH NODES                              *****/
 /*****                                                               *****/
 /*************************************************************************/
 /*************************************************************************/
 
/* in the future, we might provide a better scheme for managing       */
/* glyph node element. For the moment, we simply use FT_Alloc/FT_Free */
 /* creates a new glyph node, setting its cache index and ref count */
  FT_EXPORT_FUNC(void)   FTC_GlyphNode_Init( FTC_GlyphNode    node,
                                             FTC_Glyph_Queue  queue,
                                             FT_UInt          gindex )
  {
    FTC_Glyph_Cache      cache = queue->cache;
    FTC_CacheNode_Data*  data  = FTC_CACHENODE_TO_DATA_P( &node->root );
      
    data->cache_index = (FT_UShort) cache->root.cache_index;
    data->ref_count   = (FT_Short)  0;
    node->queue_index = (FT_UShort) queue->queue_index;
    node->glyph_index = (FT_UShort) gindex;
  }
  /* Important: this function is called from the cache manager to */
  /* destroy a given cache node during "cache compression". The   */
  /* second argument is always "cache.user_data". You thus be     */
  /* certain that the function FTC_Image_Cache_New does indeed    */
  /* set its "user_data" field correctly, otherwise bad things    */
  /* will happen !!                                               */
  
  FT_EXPORT_FUNC(void)  FTC_GlyphNode_Destroy( FTC_GlyphNode    node,
                                               FTC_Glyph_Cache  cache )
  {
    FT_LruNode       queue_lru = cache->queues_lru->nodes+node->queue_index;
    FTC_Glyph_Queue  queue     = (FTC_Glyph_Queue)queue_lru->root.data;
    FT_UInt          hash      = node->glyph_index % queue->hash_size;
    FT_List          bucket    = queue->buckets + hash;
    
    /* remove node from its queue's bucket list */
    FT_List_Remove( bucket, FTC_GLYPHNODE_TO_LISTNODE(node) );
    
    /* destroy the node */
    queue->clazz->destroy_node( node, queue );
  }
  
  /* Important: this function is called from the cache manager to */
  /* size a given cache node during "cache compression". The      */
  /* second argument is always "cache.user_data". You thus be     */
  /* certain that the function FTC_Image_Cache_New does indeed    */
  /* set its "user_data" field correctly, otherwise bad things    */
  /* will happen !!                                               */
  
  FT_EXPORT_FUNC(FT_ULong)  FTC_GlyphNode_Size( FTC_GlyphNode    node,
                                                FTC_Glyph_Cache  cache )
  {
    FT_LruNode       queue_lru = cache->queues_lru->nodes+node->queue_index;
    FTC_Glyph_Queue  queue     = (FTC_Glyph_Queue)queue_lru->root.data;
    
    return queue->clazz->size_node( node, queue );
  }
  FT_CPLUSPLUS(const FTC_CacheNode_Class)   ftc_glyph_cache_node_class =
  {
    (FTC_CacheNode_SizeFunc)     FTC_GlyphNode_Size,
    (FTC_CacheNode_DestroyFunc)  FTC_GlyphNode_Destroy
  };
 /*************************************************************************/
 /*************************************************************************/
 /*****                                                               *****/
 /*****                      GLYPH QUEUES                             *****/
 /*****                                                               *****/
 /*************************************************************************/
 /*************************************************************************/
 FT_EXPORT_FUNC(FT_Error)  FTC_Glyph_Queue_New(
                                 FTC_Glyph_Cache   cache,
                                 FT_Pointer        type,
                                 FTC_Glyph_Queue*  aqueue )
  {
    FT_Error         error;
    FT_Memory        memory  = cache->root.memory;
    FTC_Manager      manager = cache->root.manager;
    FTC_Glyph_Queue  queue   = 0;
    
    FTC_Glyph_Cache_Class* gcache_class;
    FTC_Glyph_Queue_Class* clazz;
    
    gcache_class = (FTC_Glyph_Cache_Class*)cache->root.clazz;
    clazz        = gcache_class->queue_class;
    
    *aqueue = 0;
    
    if ( ALLOC( queue, clazz->queue_byte_size ) )
      goto Exit;
    
    queue->cache     = cache;
    queue->manager   = manager;
    queue->memory    = memory;
    queue->hash_size = FTC_QUEUE_HASH_SIZE_DEFAULT;
    queue->clazz     = clazz;
    /* allocate buckets table */
    if ( ALLOC_ARRAY( queue->buckets, queue->hash_size, FT_ListRec ) )
    if (error)
      goto Exit;
    /* initialize queue by type - if needed */
    if (clazz->init)
    {
      error = clazz->init( queue, type );
      if (error)
        goto Exit;
    }
    *aqueue = queue;
  Exit:
    if ( error && queue )
    {
      FREE( queue->buckets );
      FREE( queue );
    }
    return error;
  }                                  
  FT_EXPORT_FUNC(void)  FTC_Glyph_Queue_Done( FTC_Glyph_Queue  queue )
  {
    FTC_Glyph_Cache  cache        = queue->cache;
    FTC_Manager      manager      = cache->root.manager;
    FT_List          glyphs_lru   = &manager->global_lru;
    FT_List          bucket       = queue->buckets;
    FT_List          bucket_limit = bucket + queue->hash_size;
    FT_Memory        memory       = cache->root.memory;
    
    FTC_Glyph_Queue_Class*  clazz = queue->clazz;
    /* for each bucket, free the list of Glyph nodes */
    for ( ; bucket < bucket_limit; bucket++ )
    {
      FT_ListNode    node = bucket->head;
      FT_ListNode    next = 0;
      FT_ListNode    lrunode;
      FTC_GlyphNode  inode;
      
      for ( ; node; node = next )
      {
        next    = node->next;
        inode   = FTC_LISTNODE_TO_GLYPHNODE(node);
        lrunode = FTC_GLYPHNODE_TO_LRUNODE( inode );
        
        manager->num_bytes -= clazz->size_node( inode, queue );
        
        FT_List_Remove( glyphs_lru, lrunode );
        clazz->destroy_node( inode, queue );
      }
      
      bucket->head = bucket->tail = 0;
    }
    if (clazz->done)
      clazz->done(queue);
    FREE( queue->buckets );
    FREE( queue );
  }
  FT_EXPORT_FUNC(FT_Error)  FTC_Glyph_Queue_Lookup_Node(
                                         FTC_Glyph_Queue  queue,
                                         FT_UInt          glyph_index,
                                         FTC_GlyphNode*   anode )
  {
    FTC_Glyph_Cache       cache      = queue->cache;
    FTC_Manager           manager    = cache->root.manager;
    FT_UInt               hash_index = glyph_index % queue->hash_size;
    FT_List               bucket     = queue->buckets + hash_index;
    FT_ListNode           node;
    FT_Error              error;
    FTC_GlyphNode         inode;
    
    FTC_Glyph_Queue_Class*  clazz = queue->clazz;
    *anode = 0;
    for ( node = bucket->head; node; node = node->next )
    {
      FT_UInt  gindex;
      
      inode  = FTC_LISTNODE_TO_GLYPHNODE(node);
      gindex = inode->glyph_index;
      
      if ( gindex == glyph_index )
      {
        /* we found it! -- move glyph to start of the lists */
        FT_List_Up( bucket, node );
        FT_List_Up( &manager->global_lru, FTC_GLYPHNODE_TO_LRUNODE( inode ) );
        *anode = inode;
        return 0;
      }
    }
    /* we didn't found the glyph image, we will now create a new one */
    error = clazz->new_node( queue, glyph_index, &inode );
    if ( error )
      goto Exit;
    /* insert the node at the start of our bucket list */
    FT_List_Insert( bucket, FTC_GLYPHNODE_TO_LISTNODE(inode) );
    
    /* insert the node at the start the global LRU glyph list */
    FT_List_Insert( &manager->global_lru, FTC_GLYPHNODE_TO_LRUNODE(inode) );
    
    manager->num_bytes += clazz->size_node( inode, queue );
    if (manager->num_bytes > manager->max_bytes)
      FTC_Manager_Compress( manager );
      
    *anode = inode;
  Exit:
    return error;
  }
  
  /*************************************************************************/
  /*************************************************************************/
  /*****                                                               *****/
  /*****                   GLYPH QUEUES LRU CALLBACKS                  *****/
  /*****                                                               *****/
  /*************************************************************************/
  /*************************************************************************/
 
#define FTC_QUEUE_LRU_GET_CACHE( lru )   \
          ( (FTC_Glyph_Cache)(lru)->user_data )
          
#define FTC_QUEUE_LRU_GET_MANAGER( lru ) \
          FTC_QUEUE_LRU_GET_CACHE( lru )->manager
          
#define FTC_LRUNODE_QUEUE( node )        \
          ( (FTC_Glyph_Queue)(node)->root.data )
  LOCAL_FUNC_X
  FT_Error  ftc_glyph_queue_lru_init( FT_Lru      lru,
                                      FT_LruNode  node )
  {
    FTC_Glyph_Cache  cache = FTC_QUEUE_LRU_GET_CACHE( lru );
    FT_Error         error;
    FTC_Glyph_Queue  queue;
    error = FTC_Glyph_Queue_New( cache,
                                 (FT_Pointer)node->key,
                                 &queue );
    if ( !error )
    {
      /* good, now set the queue index within the queue object */
      queue->queue_index = node - lru->nodes;
      node->root.data    = queue;
    }
    
    return error;
  }
  LOCAL_FUNC_X
  void  ftc_glyph_queue_lru_done( FT_Lru      lru,
                                  FT_LruNode  node )
  {
    FTC_Glyph_Queue  queue = FTC_LRUNODE_QUEUE( node );
    
    FT_UNUSED( lru );
    FTC_Glyph_Queue_Done( queue );
  }
  LOCAL_FUNC_X
  FT_Bool  ftc_glyph_queue_lru_compare( FT_LruNode  node,
                                        FT_LruKey   key )
  {
    FTC_Glyph_Queue  queue = FTC_LRUNODE_QUEUE( node );
    return queue->clazz->compare( queue, (FT_Pointer)key );
  }                                            
  FT_CPLUSPLUS( const FT_Lru_Class )  ftc_glyph_queue_lru_class =
  {
    sizeof( FT_LruRec ),
    ftc_glyph_queue_lru_init,
    ftc_glyph_queue_lru_done,
    0,  /* no flush */
    ftc_glyph_queue_lru_compare
  };
  /*************************************************************************/
  /*************************************************************************/
  /*****                                                               *****/
  /*****                GLYPH IMAGE CACHE OBJECTS                      *****/
  /*****                                                               *****/
  /*************************************************************************/
  /*************************************************************************/
 
  FT_EXPORT_FUNC(FT_Error)   FTC_Glyph_Cache_Init( FTC_Glyph_Cache cache )
  {
    FT_Memory               memory = cache->root.memory;
    FT_Error                error;
    /* set up root node_class to be used by manager */
    cache->root.node_clazz = (FTC_CacheNode_Class*)&ftc_glyph_cache_node_class;
    
    /* The following is extremely important for ftc_destroy_glyph_image */
    /* to work properly, as the second parameter that is sent to it     */
    /* through the cache manager is "user_data" and must be set to      */
    /* "cache" here..                                                   */
    /*                                                                  */
    cache->root.cache_user = cache;
    error = FT_Lru_New( &ftc_glyph_queue_lru_class,
                        FTC_MAX_GLYPH_QUEUES,
                        cache,
                        memory,
                        1, /* pre_alloc == TRUE */
                        &cache->queues_lru );
    return error;
  }
  FT_EXPORT_FUNC(void)    FTC_Glyph_Cache_Done( FTC_Glyph_Cache  cache )
  {
    /* discard Glyph queues */
    FT_Lru_Done( cache->queues_lru );
  }
/* END */