mf_keycache.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:87k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   These functions handle keyblock cacheing for ISAM and MyISAM tables.
  15.   One cache can handle many files.
  16.   It must contain buffers of the same blocksize.
  17.   init_key_cache() should be used to init cache handler.
  18.   The free list (free_block_list) is a stack like structure.
  19.   When a block is freed by free_block(), it is pushed onto the stack.
  20.   When a new block is required it is first tried to pop one from the stack.
  21.   If the stack is empty, it is tried to get a never-used block from the pool.
  22.   If this is empty too, then a block is taken from the LRU ring, flushing it
  23.   to disk, if neccessary. This is handled in find_key_block().
  24.   With the new free list, the blocks can have three temperatures:
  25.   hot, warm and cold (which is free). This is remembered in the block header
  26.   by the enum BLOCK_TEMPERATURE temperature variable. Remembering the
  27.   temperature is neccessary to correctly count the number of warm blocks,
  28.   which is required to decide when blocks are allowed to become hot. Whenever
  29.   a block is inserted to another (sub-)chain, we take the old and new
  30.   temperature into account to decide if we got one more or less warm block.
  31.   blocks_unused is the sum of never used blocks in the pool and of currently
  32.   free blocks. blocks_used is the number of blocks fetched from the pool and
  33.   as such gives the maximum number of in-use blocks at any time.
  34. */
  35. #include "mysys_priv.h"
  36. #include <keycache.h>
  37. #include "my_static.h"
  38. #include <m_string.h>
  39. #include <errno.h>
  40. #include <stdarg.h>
  41. /*
  42.   Some compilation flags have been added specifically for this module
  43.   to control the following:
  44.   - not to let a thread to yield the control when reading directly
  45.     from key cache, which might improve performance in many cases;
  46.     to enable this add:
  47.     #define SERIALIZED_READ_FROM_CACHE
  48.   - to set an upper bound for number of threads simultaneously
  49.     using the key cache; this setting helps to determine an optimal
  50.     size for hash table and improve performance when the number of
  51.     blocks in the key cache much less than the number of threads
  52.     accessing it;
  53.     to set this number equal to <N> add
  54.       #define MAX_THREADS <N>
  55.   - to substitute calls of pthread_cond_wait for calls of
  56.     pthread_cond_timedwait (wait with timeout set up);
  57.     this setting should be used only when you want to trap a deadlock
  58.     situation, which theoretically should not happen;
  59.     to set timeout equal to <T> seconds add
  60.       #define KEYCACHE_TIMEOUT <T>
  61.   - to enable the module traps and to send debug information from
  62.     key cache module to a special debug log add:
  63.       #define KEYCACHE_DEBUG
  64.     the name of this debug log file <LOG NAME> can be set through:
  65.       #define KEYCACHE_DEBUG_LOG  <LOG NAME>
  66.     if the name is not defined, it's set by default;
  67.     if the KEYCACHE_DEBUG flag is not set up and we are in a debug
  68.     mode, i.e. when ! defined(DBUG_OFF), the debug information from the
  69.     module is sent to the regular debug log.
  70.   Example of the settings:
  71.     #define SERIALIZED_READ_FROM_CACHE
  72.     #define MAX_THREADS   100
  73.     #define KEYCACHE_TIMEOUT  1
  74.     #define KEYCACHE_DEBUG
  75.     #define KEYCACHE_DEBUG_LOG  "my_key_cache_debug.log"
  76. */
  77. #if defined(MSDOS) && !defined(M_IC80386)
  78. /* we nead much memory */
  79. #undef my_malloc_lock
  80. #undef my_free_lock
  81. #define my_malloc_lock(A,B)  halloc((long) (A/IO_SIZE),IO_SIZE)
  82. #define my_free_lock(A,B)    hfree(A)
  83. #endif /* defined(MSDOS) && !defined(M_IC80386) */
  84. #define STRUCT_PTR(TYPE, MEMBER, a)                                           
  85.           (TYPE *) ((char *) (a) - offsetof(TYPE, MEMBER))
  86. /* types of condition variables */
  87. #define  COND_FOR_REQUESTED 0
  88. #define  COND_FOR_SAVED     1
  89. #define  COND_FOR_READERS   2
  90. typedef pthread_cond_t KEYCACHE_CONDVAR;
  91. /* descriptor of the page in the key cache block buffer */
  92. struct st_keycache_page
  93. {
  94.   int file;               /* file to which the page belongs to  */
  95.   my_off_t filepos;       /* position of the page in the file   */
  96. };
  97. /* element in the chain of a hash table bucket */
  98. struct st_hash_link
  99. {
  100.   struct st_hash_link *next, **prev; /* to connect links in the same bucket  */
  101.   struct st_block_link *block;       /* reference to the block for the page: */
  102.   File file;                         /* from such a file                     */
  103.   my_off_t diskpos;                  /* with such an offset                  */
  104.   uint requests;                     /* number of requests for the page      */
  105. };
  106. /* simple states of a block */
  107. #define BLOCK_ERROR       1   /* an error occured when performing disk i/o   */
  108. #define BLOCK_READ        2   /* the is page in the block buffer             */
  109. #define BLOCK_IN_SWITCH   4   /* block is preparing to read new page         */
  110. #define BLOCK_REASSIGNED  8   /* block does not accept requests for old page */
  111. #define BLOCK_IN_FLUSH   16   /* block is in flush operation                 */
  112. #define BLOCK_CHANGED    32   /* block buffer contains a dirty page          */
  113. /* page status, returned by find_key_block */
  114. #define PAGE_READ               0
  115. #define PAGE_TO_BE_READ         1
  116. #define PAGE_WAIT_TO_BE_READ    2
  117. /* block temperature determines in which (sub-)chain the block currently is */
  118. enum BLOCK_TEMPERATURE { BLOCK_COLD /*free*/ , BLOCK_WARM , BLOCK_HOT };
  119. /* key cache block */
  120. struct st_block_link
  121. {
  122.   struct st_block_link
  123.     *next_used, **prev_used;   /* to connect links in the LRU chain (ring)   */
  124.   struct st_block_link
  125.     *next_changed, **prev_changed; /* for lists of file dirty/clean blocks   */
  126.   struct st_hash_link *hash_link; /* backward ptr to referring hash_link     */
  127.   KEYCACHE_WQUEUE wqueue[2]; /* queues on waiting requests for new/old pages */
  128.   uint requests;          /* number of requests for the block                */
  129.   byte *buffer;           /* buffer for the block page                       */
  130.   uint offset;            /* beginning of modified data in the buffer        */
  131.   uint length;            /* end of data in the buffer                       */
  132.   uint status;            /* state of the block                              */
  133.   enum BLOCK_TEMPERATURE temperature; /* block temperature: cold, warm, hot */
  134.   uint hits_left;         /* number of hits left until promotion             */
  135.   ulonglong last_hit_time; /* timestamp of the last hit                      */
  136.   KEYCACHE_CONDVAR *condvar; /* condition variable for 'no readers' event    */
  137. };
  138. KEY_CACHE dflt_key_cache_var;
  139. KEY_CACHE *dflt_key_cache= &dflt_key_cache_var;
  140. #define FLUSH_CACHE         2000            /* sort this many blocks at once */
  141. static int flush_all_key_blocks(KEY_CACHE *keycache);
  142. static void link_into_queue(KEYCACHE_WQUEUE *wqueue,
  143.                                    struct st_my_thread_var *thread);
  144. static void unlink_from_queue(KEYCACHE_WQUEUE *wqueue,
  145.                                      struct st_my_thread_var *thread);
  146. static void free_block(KEY_CACHE *keycache, BLOCK_LINK *block);
  147. static void test_key_cache(KEY_CACHE *keycache,
  148.                            const char *where, my_bool lock);
  149. #define KEYCACHE_HASH(f, pos)                                                 
  150. (((ulong) ((pos) >> keycache->key_cache_shift)+                               
  151.                                      (ulong) (f)) & (keycache->hash_entries-1))
  152. #define FILE_HASH(f)                 ((uint) (f) & (CHANGED_BLOCKS_HASH-1))
  153. #define DEFAULT_KEYCACHE_DEBUG_LOG  "keycache_debug.log"
  154. #if defined(KEYCACHE_DEBUG) && ! defined(KEYCACHE_DEBUG_LOG)
  155. #define KEYCACHE_DEBUG_LOG  DEFAULT_KEYCACHE_DEBUG_LOG
  156. #endif
  157. #if defined(KEYCACHE_DEBUG_LOG)
  158. static FILE *keycache_debug_log=NULL;
  159. static void keycache_debug_print _VARARGS((const char *fmt,...));
  160. #define KEYCACHE_DEBUG_OPEN                                                   
  161.           if (!keycache_debug_log)                                            
  162.           {                                                                   
  163.             keycache_debug_log= fopen(KEYCACHE_DEBUG_LOG, "w");               
  164.             (void) setvbuf(keycache_debug_log, NULL, _IOLBF, BUFSIZ);         
  165.           }
  166. #define KEYCACHE_DEBUG_CLOSE                                                  
  167.           if (keycache_debug_log)                                             
  168.           {                                                                   
  169.             fclose(keycache_debug_log);                                       
  170.             keycache_debug_log= 0;                                            
  171.           }
  172. #else
  173. #define KEYCACHE_DEBUG_OPEN
  174. #define KEYCACHE_DEBUG_CLOSE
  175. #endif /* defined(KEYCACHE_DEBUG_LOG) */
  176. #if defined(KEYCACHE_DEBUG_LOG) && defined(KEYCACHE_DEBUG)
  177. #define KEYCACHE_DBUG_PRINT(l, m)                                             
  178.             { if (keycache_debug_log) fprintf(keycache_debug_log, "%s: ", l); 
  179.               keycache_debug_print m; }
  180. #define KEYCACHE_DBUG_ASSERT(a)                                               
  181.             { if (! (a) && keycache_debug_log) fclose(keycache_debug_log);    
  182.               assert(a); }
  183. #else
  184. #define KEYCACHE_DBUG_PRINT(l, m)  DBUG_PRINT(l, m)
  185. #define KEYCACHE_DBUG_ASSERT(a)    DBUG_ASSERT(a)
  186. #endif /* defined(KEYCACHE_DEBUG_LOG) && defined(KEYCACHE_DEBUG) */
  187. #if defined(KEYCACHE_DEBUG) || !defined(DBUG_OFF)
  188. static long keycache_thread_id;
  189. #define KEYCACHE_THREAD_TRACE(l)                                              
  190.              KEYCACHE_DBUG_PRINT(l,("|thread %ld",keycache_thread_id))
  191. #define KEYCACHE_THREAD_TRACE_BEGIN(l)                                        
  192.             { struct st_my_thread_var *thread_var= my_thread_var;             
  193.               keycache_thread_id= thread_var->id;                             
  194.               KEYCACHE_DBUG_PRINT(l,("[thread %ld",keycache_thread_id)) }
  195. #define KEYCACHE_THREAD_TRACE_END(l)                                          
  196.             KEYCACHE_DBUG_PRINT(l,("]thread %ld",keycache_thread_id))
  197. #else
  198. #define KEYCACHE_THREAD_TRACE_BEGIN(l)
  199. #define KEYCACHE_THREAD_TRACE_END(l)
  200. #define KEYCACHE_THREAD_TRACE(l)
  201. #endif /* defined(KEYCACHE_DEBUG) || !defined(DBUG_OFF) */
  202. #define BLOCK_NUMBER(b)                                                       
  203.   ((uint) (((char*)(b)-(char *) keycache->block_root)/sizeof(BLOCK_LINK)))
  204. #define HASH_LINK_NUMBER(h)                                                   
  205.   ((uint) (((char*)(h)-(char *) keycache->hash_link_root)/sizeof(HASH_LINK)))
  206. #if (defined(KEYCACHE_TIMEOUT) && !defined(__WIN__)) || defined(KEYCACHE_DEBUG)
  207. static int keycache_pthread_cond_wait(pthread_cond_t *cond,
  208.                                       pthread_mutex_t *mutex);
  209. #else
  210. #define  keycache_pthread_cond_wait pthread_cond_wait
  211. #endif
  212. #if defined(KEYCACHE_DEBUG)
  213. static int keycache_pthread_mutex_lock(pthread_mutex_t *mutex);
  214. static void keycache_pthread_mutex_unlock(pthread_mutex_t *mutex);
  215. static int keycache_pthread_cond_signal(pthread_cond_t *cond);
  216. #else
  217. #define keycache_pthread_mutex_lock pthread_mutex_lock
  218. #define keycache_pthread_mutex_unlock pthread_mutex_unlock
  219. #define keycache_pthread_cond_signal pthread_cond_signal
  220. #endif /* defined(KEYCACHE_DEBUG) */
  221. static uint next_power(uint value)
  222. {
  223.   uint old_value= 1;
  224.   while (value)
  225.   {
  226.     old_value= value;
  227.     value&= value-1;
  228.   }
  229.   return (old_value << 1);
  230. }
  231. /*
  232.   Initialize a key cache
  233.   SYNOPSIS
  234.     init_key_cache()
  235.     keycache pointer to a key cache data structure
  236.     key_cache_block_size size of blocks to keep cached data
  237.     use_mem                  total memory to use for the key cache
  238.     division_limit division limit (may be zero)
  239.     age_threshold age threshold (may be zero)
  240.   RETURN VALUE
  241.     number of blocks in the key cache, if successful,
  242.     0 - otherwise.
  243.   NOTES.
  244.     if keycache->key_cache_inited != 0 we assume that the key cache
  245.     is already initialized.  This is for now used by myisamchk, but shouldn't
  246.     be something that a program should rely on!
  247.     It's assumed that no two threads call this function simultaneously
  248.     referring to the same key cache handle.
  249. */
  250. int init_key_cache(KEY_CACHE *keycache, uint key_cache_block_size,
  251.    ulong use_mem, uint division_limit,
  252.    uint age_threshold)
  253. {
  254.   uint blocks, hash_links, length;
  255.   int error;
  256.   DBUG_ENTER("init_key_cache");
  257.   DBUG_ASSERT(key_cache_block_size >= 512);
  258.   KEYCACHE_DEBUG_OPEN;
  259.   if (keycache->key_cache_inited && keycache->disk_blocks > 0)
  260.   {
  261.     DBUG_PRINT("warning",("key cache already in use"));
  262.     DBUG_RETURN(0);
  263.   }
  264.   keycache->global_cache_w_requests= keycache->global_cache_r_requests= 0;
  265.   keycache->global_cache_read= keycache->global_cache_write= 0;
  266.   keycache->disk_blocks= -1;
  267.   if (! keycache->key_cache_inited)
  268.   {
  269.     keycache->key_cache_inited= 1;
  270.     keycache->in_init= 0;
  271.     pthread_mutex_init(&keycache->cache_lock, MY_MUTEX_INIT_FAST);
  272.     keycache->resize_queue.last_thread= NULL;
  273.   }
  274.   keycache->key_cache_mem_size= use_mem;
  275.   keycache->key_cache_block_size= key_cache_block_size;
  276.   keycache->key_cache_shift= my_bit_log2(key_cache_block_size);
  277.   DBUG_PRINT("info", ("key_cache_block_size: %u",
  278.       key_cache_block_size));
  279.   blocks= (uint) (use_mem / (sizeof(BLOCK_LINK) + 2 * sizeof(HASH_LINK) +
  280.      sizeof(HASH_LINK*) * 5/4 + key_cache_block_size));
  281.   /* It doesn't make sense to have too few blocks (less than 8) */
  282.   if (blocks >= 8 && keycache->disk_blocks < 0)
  283.   {
  284.     for ( ; ; )
  285.     {
  286.       /* Set my_hash_entries to the next bigger 2 power */
  287.       if ((keycache->hash_entries= next_power(blocks)) < blocks * 5/4)
  288.         keycache->hash_entries<<= 1;
  289.       hash_links= 2 * blocks;
  290. #if defined(MAX_THREADS)
  291.       if (hash_links < MAX_THREADS + blocks - 1)
  292.         hash_links= MAX_THREADS + blocks - 1;
  293. #endif
  294.       while ((length= (ALIGN_SIZE(blocks * sizeof(BLOCK_LINK)) +
  295.        ALIGN_SIZE(hash_links * sizeof(HASH_LINK)) +
  296.        ALIGN_SIZE(sizeof(HASH_LINK*) *
  297.                                   keycache->hash_entries))) +
  298.      ((ulong) blocks << keycache->key_cache_shift) > use_mem)
  299.         blocks--;
  300.       /* Allocate memory for cache page buffers */
  301.       if ((keycache->block_mem=
  302.    my_malloc_lock((ulong) blocks * keycache->key_cache_block_size,
  303.   MYF(0))))
  304.       {
  305.         /*
  306.   Allocate memory for blocks, hash_links and hash entries;
  307.   For each block 2 hash links are allocated
  308.         */
  309.         if ((keycache->block_root= (BLOCK_LINK*) my_malloc((uint) length,
  310.                                                            MYF(0))))
  311.           break;
  312.         my_free_lock(keycache->block_mem, MYF(0));
  313.         keycache->block_mem= 0;
  314.       }
  315.       if (blocks < 8)
  316.       {
  317.         my_errno= ENOMEM;
  318.         goto err;
  319.       }
  320.       blocks= blocks / 4*3;
  321.     }
  322.     keycache->blocks_unused= (ulong) blocks;
  323.     keycache->disk_blocks= (int) blocks;
  324.     keycache->hash_links= hash_links;
  325.     keycache->hash_root= (HASH_LINK**) ((char*) keycache->block_root +
  326.         ALIGN_SIZE(blocks*sizeof(BLOCK_LINK)));
  327.     keycache->hash_link_root= (HASH_LINK*) ((char*) keycache->hash_root +
  328.             ALIGN_SIZE((sizeof(HASH_LINK*) *
  329. keycache->hash_entries)));
  330.     bzero((byte*) keycache->block_root,
  331.   keycache->disk_blocks * sizeof(BLOCK_LINK));
  332.     bzero((byte*) keycache->hash_root,
  333.           keycache->hash_entries * sizeof(HASH_LINK*));
  334.     bzero((byte*) keycache->hash_link_root,
  335.   keycache->hash_links * sizeof(HASH_LINK));
  336.     keycache->hash_links_used= 0;
  337.     keycache->free_hash_list= NULL;
  338.     keycache->blocks_used= keycache->blocks_changed= 0;
  339.     keycache->global_blocks_changed= 0;
  340.     keycache->blocks_available=0; /* For debugging */
  341.     /* The LRU chain is empty after initialization */
  342.     keycache->used_last= NULL;
  343.     keycache->used_ins= NULL;
  344.     keycache->free_block_list= NULL;
  345.     keycache->keycache_time= 0;
  346.     keycache->warm_blocks= 0;
  347.     keycache->min_warm_blocks= (division_limit ?
  348. blocks * division_limit / 100 + 1 :
  349. blocks);
  350.     keycache->age_threshold= (age_threshold ?
  351.       blocks * age_threshold / 100 :
  352.       blocks);
  353.     keycache->cnt_for_resize_op= 0;
  354.     keycache->resize_in_flush= 0;
  355.     keycache->can_be_used= 1;
  356.     keycache->waiting_for_hash_link.last_thread= NULL;
  357.     keycache->waiting_for_block.last_thread= NULL;
  358.     DBUG_PRINT("exit",
  359.        ("disk_blocks: %d  block_root: 0x%lx  hash_entries: %d
  360.  hash_root: 0x%lx  hash_links: %d  hash_link_root: 0x%lx",
  361. keycache->disk_blocks, keycache->block_root,
  362. keycache->hash_entries, keycache->hash_root,
  363. keycache->hash_links, keycache->hash_link_root));
  364.     bzero((gptr) keycache->changed_blocks,
  365.   sizeof(keycache->changed_blocks[0]) * CHANGED_BLOCKS_HASH);
  366.     bzero((gptr) keycache->file_blocks,
  367.   sizeof(keycache->file_blocks[0]) * CHANGED_BLOCKS_HASH);
  368.   }
  369.   keycache->blocks= keycache->disk_blocks > 0 ? keycache->disk_blocks : 0;
  370.   DBUG_RETURN((int) keycache->disk_blocks);
  371. err:
  372.   error= my_errno;
  373.   keycache->disk_blocks= 0;
  374.   keycache->blocks=  0;
  375.   if (keycache->block_mem)
  376.   {
  377.     my_free_lock((gptr) keycache->block_mem, MYF(0));
  378.     keycache->block_mem= NULL;
  379.   }
  380.   if (keycache->block_root)
  381.   {
  382.     my_free((gptr) keycache->block_root, MYF(0));
  383.     keycache->block_root= NULL;
  384.   }
  385.   my_errno= error;
  386.   keycache->can_be_used= 0;
  387.   DBUG_RETURN(0);
  388. }
  389. /*
  390.   Resize a key cache
  391.   SYNOPSIS
  392.     resize_key_cache()
  393.     keycache              pointer to a key cache data structure
  394.     key_cache_block_size        size of blocks to keep cached data
  395.     use_mem total memory to use for the new key cache
  396.     division_limit new division limit (if not zero)
  397.     age_threshold new age threshold (if not zero)
  398.   RETURN VALUE
  399.     number of blocks in the key cache, if successful,
  400.     0 - otherwise.
  401.   NOTES.
  402.     The function first compares the memory size and the block size parameters
  403.     with the key cache values.
  404.     If they differ the function free the the memory allocated for the
  405.     old key cache blocks by calling the end_key_cache function and
  406.     then rebuilds the key cache with new blocks by calling
  407.     init_key_cache.
  408.     The function starts the operation only when all other threads
  409.     performing operations with the key cache let her to proceed
  410.     (when cnt_for_resize=0).
  411. */
  412. int resize_key_cache(KEY_CACHE *keycache, uint key_cache_block_size,
  413.      ulong use_mem, uint division_limit,
  414.      uint age_threshold)
  415. {
  416.   int blocks;
  417.   struct st_my_thread_var *thread;
  418.   KEYCACHE_WQUEUE *wqueue;
  419.   DBUG_ENTER("resize_key_cache");
  420.   if (!keycache->key_cache_inited)
  421.     DBUG_RETURN(keycache->disk_blocks);
  422.   if(key_cache_block_size == keycache->key_cache_block_size &&
  423.      use_mem == keycache->key_cache_mem_size)
  424.   {
  425.     change_key_cache_param(keycache, division_limit, age_threshold);
  426.     DBUG_RETURN(keycache->disk_blocks);
  427.   }
  428.   keycache_pthread_mutex_lock(&keycache->cache_lock);
  429.   wqueue= &keycache->resize_queue;
  430.   thread= my_thread_var;
  431.   link_into_queue(wqueue, thread);
  432.   while (wqueue->last_thread->next != thread)
  433.   {
  434.     keycache_pthread_cond_wait(&thread->suspend, &keycache->cache_lock);
  435.   }
  436.   keycache->resize_in_flush= 1;
  437.   if (flush_all_key_blocks(keycache))
  438.   {
  439.     /* TODO: if this happens, we should write a warning in the log file ! */
  440.     keycache->resize_in_flush= 0;
  441.     blocks= 0;
  442.     keycache->can_be_used= 0;
  443.     goto finish;
  444.   }
  445.   keycache->resize_in_flush= 0;
  446.   keycache->can_be_used= 0;
  447.   while (keycache->cnt_for_resize_op)
  448.   {
  449.     KEYCACHE_DBUG_PRINT("resize_key_cache: wait",
  450.                         ("suspend thread %ld", thread->id));
  451.     keycache_pthread_cond_wait(&thread->suspend, &keycache->cache_lock);
  452.   }
  453.   end_key_cache(keycache, 0); /* Don't free mutex */
  454.   /* The following will work even if use_mem is 0 */
  455.   blocks= init_key_cache(keycache, key_cache_block_size, use_mem,
  456.  division_limit, age_threshold);
  457. finish:
  458.   unlink_from_queue(wqueue, thread);
  459.   /* Signal for the next resize request to proceeed if any */
  460.   if (wqueue->last_thread)
  461.   {
  462.     KEYCACHE_DBUG_PRINT("resize_key_cache: signal",
  463.                         ("thread %ld", wqueue->last_thread->next->id));
  464.     keycache_pthread_cond_signal(&wqueue->last_thread->next->suspend);
  465.   }
  466.   keycache_pthread_mutex_unlock(&keycache->cache_lock);
  467.   return blocks;
  468. }
  469. /*
  470.   Increment counter blocking resize key cache operation
  471. */
  472. static inline void inc_counter_for_resize_op(KEY_CACHE *keycache)
  473. {
  474.   keycache->cnt_for_resize_op++;
  475. }
  476. /*
  477.   Decrement counter blocking resize key cache operation;
  478.   Signal the operation to proceed when counter becomes equal zero
  479. */
  480. static inline void dec_counter_for_resize_op(KEY_CACHE *keycache)
  481. {
  482.   struct st_my_thread_var *last_thread;
  483.   if (!--keycache->cnt_for_resize_op &&
  484.       (last_thread= keycache->resize_queue.last_thread))
  485.   {
  486.     KEYCACHE_DBUG_PRINT("dec_counter_for_resize_op: signal",
  487.                         ("thread %ld", last_thread->next->id));
  488.     keycache_pthread_cond_signal(&last_thread->next->suspend);
  489.   }
  490. }
  491. /*
  492.   Change the key cache parameters
  493.   SYNOPSIS
  494.     change_key_cache_param()
  495.     keycache pointer to a key cache data structure
  496.     division_limit new division limit (if not zero)
  497.     age_threshold new age threshold (if not zero)
  498.   RETURN VALUE
  499.     none
  500.   NOTES.
  501.     Presently the function resets the key cache parameters
  502.     concerning midpoint insertion strategy - division_limit and
  503.     age_threshold.
  504. */
  505. void change_key_cache_param(KEY_CACHE *keycache, uint division_limit,
  506.     uint age_threshold)
  507. {
  508.   DBUG_ENTER("change_key_cache_param");
  509.   keycache_pthread_mutex_lock(&keycache->cache_lock);
  510.   if (division_limit)
  511.     keycache->min_warm_blocks= (keycache->disk_blocks *
  512. division_limit / 100 + 1);
  513.   if (age_threshold)
  514.     keycache->age_threshold=   (keycache->disk_blocks *
  515. age_threshold / 100);
  516.   keycache_pthread_mutex_unlock(&keycache->cache_lock);
  517.   DBUG_VOID_RETURN;
  518. }
  519. /*
  520.   Remove key_cache from memory
  521.   SYNOPSIS
  522.     end_key_cache()
  523.     keycache key cache handle
  524.     cleanup Complete free (Free also mutex for key cache)
  525.   RETURN VALUE
  526.     none
  527. */
  528. void end_key_cache(KEY_CACHE *keycache, my_bool cleanup)
  529. {
  530.   DBUG_ENTER("end_key_cache");
  531.   DBUG_PRINT("enter", ("key_cache: 0x%lx", keycache));
  532.   if (!keycache->key_cache_inited)
  533.     DBUG_VOID_RETURN;
  534.   if (keycache->disk_blocks > 0)
  535.   {
  536.     if (keycache->block_mem)
  537.     {
  538.       my_free_lock((gptr) keycache->block_mem, MYF(0));
  539.       keycache->block_mem= NULL;
  540.       my_free((gptr) keycache->block_root, MYF(0));
  541.       keycache->block_root= NULL;
  542.     }
  543.     keycache->disk_blocks= -1;
  544.     /* Reset blocks_changed to be safe if flush_all_key_blocks is called */
  545.     keycache->blocks_changed= 0;
  546.   }
  547.   DBUG_PRINT("status", ("used: %d  changed: %d  w_requests: %lu  "
  548.                         "writes: %lu  r_requests: %lu  reads: %lu",
  549.                         keycache->blocks_used, keycache->global_blocks_changed,
  550.                         (ulong) keycache->global_cache_w_requests,
  551.                         (ulong) keycache->global_cache_write,
  552.                         (ulong) keycache->global_cache_r_requests,
  553.                         (ulong) keycache->global_cache_read));
  554.   if (cleanup)
  555.   {
  556.     pthread_mutex_destroy(&keycache->cache_lock);
  557.     keycache->key_cache_inited= keycache->can_be_used= 0;
  558.     KEYCACHE_DEBUG_CLOSE;
  559.   }
  560.   DBUG_VOID_RETURN;
  561. } /* end_key_cache */
  562. /*
  563.   Link a thread into double-linked queue of waiting threads.
  564.   SYNOPSIS
  565.     link_into_queue()
  566.       wqueue              pointer to the queue structure
  567.       thread              pointer to the thread to be added to the queue
  568.   RETURN VALUE
  569.     none
  570.   NOTES.
  571.     Queue is represented by a circular list of the thread structures
  572.     The list is double-linked of the type (**prev,*next), accessed by
  573.     a pointer to the last element.
  574. */
  575. static void link_into_queue(KEYCACHE_WQUEUE *wqueue,
  576.                                    struct st_my_thread_var *thread)
  577. {
  578.   struct st_my_thread_var *last;
  579.   if (! (last= wqueue->last_thread))
  580.   {
  581.     /* Queue is empty */
  582.     thread->next= thread;
  583.     thread->prev= &thread->next;
  584.   }
  585.   else
  586.   {
  587.     thread->prev= last->next->prev;
  588.     last->next->prev= &thread->next;
  589.     thread->next= last->next;
  590.     last->next= thread;
  591.   }
  592.   wqueue->last_thread= thread;
  593. }
  594. /*
  595.   Unlink a thread from double-linked queue of waiting threads
  596.   SYNOPSIS
  597.     unlink_from_queue()
  598.       wqueue              pointer to the queue structure
  599.       thread              pointer to the thread to be removed from the queue
  600.   RETURN VALUE
  601.     none
  602.   NOTES.
  603.     See NOTES for link_into_queue
  604. */
  605. static void unlink_from_queue(KEYCACHE_WQUEUE *wqueue,
  606.                                      struct st_my_thread_var *thread)
  607. {
  608.   KEYCACHE_DBUG_PRINT("unlink_from_queue", ("thread %ld", thread->id));
  609.   if (thread->next == thread)
  610.     /* The queue contains only one member */
  611.     wqueue->last_thread= NULL;
  612.   else
  613.   {
  614.     thread->next->prev= thread->prev;
  615.     *thread->prev=thread->next;
  616.     if (wqueue->last_thread == thread)
  617.       wqueue->last_thread= STRUCT_PTR(struct st_my_thread_var, next,
  618.                                       thread->prev);
  619.   }
  620.   thread->next= NULL;
  621. }
  622. /*
  623.   Add a thread to single-linked queue of waiting threads
  624.   SYNOPSIS
  625.     add_to_queue()
  626.       wqueue              pointer to the queue structure
  627.       thread              pointer to the thread to be added to the queue
  628.   RETURN VALUE
  629.     none
  630.   NOTES.
  631.     Queue is represented by a circular list of the thread structures
  632.     The list is single-linked of the type (*next), accessed by a pointer
  633.     to the last element.
  634. */
  635. static inline void add_to_queue(KEYCACHE_WQUEUE *wqueue,
  636.                                 struct st_my_thread_var *thread)
  637. {
  638.   struct st_my_thread_var *last;
  639.   if (! (last= wqueue->last_thread))
  640.     thread->next= thread;
  641.   else
  642.   {
  643.     thread->next= last->next;
  644.     last->next= thread;
  645.   }
  646.   wqueue->last_thread= thread;
  647. }
  648. /*
  649.   Remove all threads from queue signaling them to proceed
  650.   SYNOPSIS
  651.     realease_queue()
  652.       wqueue              pointer to the queue structure
  653.       thread              pointer to the thread to be added to the queue
  654.   RETURN VALUE
  655.     none
  656.   NOTES.
  657.     See notes for add_to_queue
  658.     When removed from the queue each thread is signaled via condition
  659.     variable thread->suspend.
  660. */
  661. static void release_queue(KEYCACHE_WQUEUE *wqueue)
  662. {
  663.   struct st_my_thread_var *last= wqueue->last_thread;
  664.   struct st_my_thread_var *next= last->next;
  665.   struct st_my_thread_var *thread;
  666.   do
  667.   {
  668.     thread=next;
  669.     KEYCACHE_DBUG_PRINT("release_queue: signal", ("thread %ld", thread->id));
  670.     keycache_pthread_cond_signal(&thread->suspend);
  671.     next=thread->next;
  672.     thread->next= NULL;
  673.   }
  674.   while (thread != last);
  675.   wqueue->last_thread= NULL;
  676. }
  677. /*
  678.   Unlink a block from the chain of dirty/clean blocks
  679. */
  680. static inline void unlink_changed(BLOCK_LINK *block)
  681. {
  682.   if (block->next_changed)
  683.     block->next_changed->prev_changed= block->prev_changed;
  684.   *block->prev_changed= block->next_changed;
  685. }
  686. /*
  687.   Link a block into the chain of dirty/clean blocks
  688. */
  689. static inline void link_changed(BLOCK_LINK *block, BLOCK_LINK **phead)
  690. {
  691.   block->prev_changed= phead;
  692.   if ((block->next_changed= *phead))
  693.     (*phead)->prev_changed= &block->next_changed;
  694.   *phead= block;
  695. }
  696. /*
  697.   Unlink a block from the chain of dirty/clean blocks, if it's asked for,
  698.   and link it to the chain of clean blocks for the specified file
  699. */
  700. static void link_to_file_list(KEY_CACHE *keycache,
  701.                               BLOCK_LINK *block, int file, my_bool unlink)
  702. {
  703.   if (unlink)
  704.     unlink_changed(block);
  705.   link_changed(block, &keycache->file_blocks[FILE_HASH(file)]);
  706.   if (block->status & BLOCK_CHANGED)
  707.   {
  708.     block->status&= ~BLOCK_CHANGED;
  709.     keycache->blocks_changed--;
  710.     keycache->global_blocks_changed--;
  711.   }
  712. }
  713. /*
  714.   Unlink a block from the chain of clean blocks for the specified
  715.   file and link it to the chain of dirty blocks for this file
  716. */
  717. static inline void link_to_changed_list(KEY_CACHE *keycache,
  718.                                         BLOCK_LINK *block)
  719. {
  720.   unlink_changed(block);
  721.   link_changed(block,
  722.                &keycache->changed_blocks[FILE_HASH(block->hash_link->file)]);
  723.   block->status|=BLOCK_CHANGED;
  724.   keycache->blocks_changed++;
  725.   keycache->global_blocks_changed++;
  726. }
  727. /*
  728.   Link a block to the LRU chain at the beginning or at the end of
  729.   one of two parts.
  730.   SYNOPSIS
  731.     link_block()
  732.       keycache            pointer to a key cache data structure
  733.       block               pointer to the block to link to the LRU chain
  734.       hot                 <-> to link the block into the hot subchain
  735.       at_end              <-> to link the block at the end of the subchain
  736.   RETURN VALUE
  737.     none
  738.   NOTES.
  739.     The LRU chain is represented by a curcular list of block structures.
  740.     The list is double-linked of the type (**prev,*next) type.
  741.     The LRU chain is divided into two parts - hot and warm.
  742.     There are two pointers to access the last blocks of these two
  743.     parts. The beginning of the warm part follows right after the
  744.     end of the hot part.
  745.     Only blocks of the warm part can be used for replacement.
  746.     The first block from the beginning of this subchain is always
  747.     taken for eviction (keycache->last_used->next)
  748.     LRU chain:       +------+   H O T    +------+
  749.                 +----| end  |----...<----| beg  |----+
  750.                 |    +------+last        +------+    |
  751.                 v<-link in latest hot (new end)      |
  752.                 |     link in latest warm (new end)->^
  753.                 |    +------+  W A R M   +------+    |
  754.                 +----| beg  |---->...----| end  |----+
  755.                      +------+            +------+ins
  756.                   first for eviction
  757. */
  758. static void link_block(KEY_CACHE *keycache, BLOCK_LINK *block, my_bool hot,
  759.                        my_bool at_end)
  760. {
  761.   BLOCK_LINK *ins;
  762.   BLOCK_LINK **pins;
  763.   KEYCACHE_DBUG_ASSERT(! (block->hash_link && block->hash_link->requests));
  764.   if (!hot && keycache->waiting_for_block.last_thread)
  765.   {
  766.     /* Signal that in the LRU warm sub-chain an available block has appeared */
  767.     struct st_my_thread_var *last_thread=
  768.                                keycache->waiting_for_block.last_thread;
  769.     struct st_my_thread_var *first_thread= last_thread->next;
  770.     struct st_my_thread_var *next_thread= first_thread;
  771.     HASH_LINK *hash_link= (HASH_LINK *) first_thread->opt_info;
  772.     struct st_my_thread_var *thread;
  773.     do
  774.     {
  775.       thread= next_thread;
  776.       next_thread= thread->next;
  777.       /*
  778.          We notify about the event all threads that ask
  779.          for the same page as the first thread in the queue
  780.       */
  781.       if ((HASH_LINK *) thread->opt_info == hash_link)
  782.       {
  783.         KEYCACHE_DBUG_PRINT("link_block: signal", ("thread %ld", thread->id));
  784.         keycache_pthread_cond_signal(&thread->suspend);
  785.         unlink_from_queue(&keycache->waiting_for_block, thread);
  786.         block->requests++;
  787.       }
  788.     }
  789.     while (thread != last_thread);
  790.     hash_link->block= block;
  791.     KEYCACHE_THREAD_TRACE("link_block: after signaling");
  792. #if defined(KEYCACHE_DEBUG)
  793.     KEYCACHE_DBUG_PRINT("link_block",
  794.         ("linked,unlinked block %u  status=%x  #requests=%u  #available=%u",
  795.          BLOCK_NUMBER(block), block->status,
  796.          block->requests, keycache->blocks_available));
  797. #endif
  798.     return;
  799.   }
  800.   pins= hot ? &keycache->used_ins : &keycache->used_last;
  801.   ins= *pins;
  802.   if (ins)
  803.   {
  804.     ins->next_used->prev_used= &block->next_used;
  805.     block->next_used= ins->next_used;
  806.     block->prev_used= &ins->next_used;
  807.     ins->next_used= block;
  808.     if (at_end)
  809.       *pins= block;
  810.   }
  811.   else
  812.   {
  813.     /* The LRU chain is empty */
  814.     keycache->used_last= keycache->used_ins= block->next_used= block;
  815.     block->prev_used= &block->next_used;
  816.   }
  817.   KEYCACHE_THREAD_TRACE("link_block");
  818. #if defined(KEYCACHE_DEBUG)
  819.   keycache->blocks_available++;
  820.   KEYCACHE_DBUG_PRINT("link_block",
  821.       ("linked block %u:%1u  status=%x  #requests=%u  #available=%u",
  822.        BLOCK_NUMBER(block), at_end, block->status,
  823.        block->requests, keycache->blocks_available));
  824.   KEYCACHE_DBUG_ASSERT((ulong) keycache->blocks_available <=
  825.                        keycache->blocks_used);
  826. #endif
  827. }
  828. /*
  829.   Unlink a block from the LRU chain
  830.   SYNOPSIS
  831.     unlink_block()
  832.       keycache            pointer to a key cache data structure
  833.       block               pointer to the block to unlink from the LRU chain
  834.   RETURN VALUE
  835.     none
  836.   NOTES.
  837.     See NOTES for link_block
  838. */
  839. static void unlink_block(KEY_CACHE *keycache, BLOCK_LINK *block)
  840. {
  841.   if (block->next_used == block)
  842.     /* The list contains only one member */
  843.     keycache->used_last= keycache->used_ins= NULL;
  844.   else
  845.   {
  846.     block->next_used->prev_used= block->prev_used;
  847.     *block->prev_used= block->next_used;
  848.     if (keycache->used_last == block)
  849.       keycache->used_last= STRUCT_PTR(BLOCK_LINK, next_used, block->prev_used);
  850.     if (keycache->used_ins == block)
  851.       keycache->used_ins=STRUCT_PTR(BLOCK_LINK, next_used, block->prev_used);
  852.   }
  853.   block->next_used= NULL;
  854.   KEYCACHE_THREAD_TRACE("unlink_block");
  855. #if defined(KEYCACHE_DEBUG)
  856.   keycache->blocks_available--;
  857.   KEYCACHE_DBUG_PRINT("unlink_block",
  858.     ("unlinked block %u  status=%x   #requests=%u  #available=%u",
  859.      BLOCK_NUMBER(block), block->status,
  860.      block->requests, keycache->blocks_available));
  861.   KEYCACHE_DBUG_ASSERT(keycache->blocks_available >= 0);
  862. #endif
  863. }
  864. /*
  865.   Register requests for a block
  866. */
  867. static void reg_requests(KEY_CACHE *keycache, BLOCK_LINK *block, int count)
  868. {
  869.   if (! block->requests)
  870.     /* First request for the block unlinks it */
  871.     unlink_block(keycache, block);
  872.   block->requests+=count;
  873. }
  874. /*
  875.   Unregister request for a block
  876.   linking it to the LRU chain if it's the last request
  877.   SYNOPSIS
  878.     unreg_request()
  879.     keycache            pointer to a key cache data structure
  880.     block               pointer to the block to link to the LRU chain
  881.     at_end              <-> to link the block at the end of the LRU chain
  882.   RETURN VALUE
  883.     none
  884.   NOTES.
  885.     Every linking to the LRU chain decrements by one a special block
  886.     counter (if it's positive). If the at_end parameter is TRUE the block is
  887.     added either at the end of warm sub-chain or at the end of hot sub-chain.
  888.     It is added to the hot subchain if its counter is zero and number of
  889.     blocks in warm sub-chain is not less than some low limit (determined by
  890.     the division_limit parameter). Otherwise the block is added to the warm
  891.     sub-chain. If the at_end parameter is FALSE the block is always added
  892.     at beginning of the warm sub-chain.
  893.     Thus a warm block can be promoted to the hot sub-chain when its counter
  894.     becomes zero for the first time.
  895.     At the same time  the block at the very beginning of the hot subchain
  896.     might be moved to the beginning of the warm subchain if it stays untouched
  897.     for a too long time (this time is determined by parameter age_threshold).
  898. */
  899. static void unreg_request(KEY_CACHE *keycache,
  900.                           BLOCK_LINK *block, int at_end)
  901. {
  902.   if (! --block->requests)
  903.   {
  904.     my_bool hot;
  905.     if (block->hits_left)
  906.       block->hits_left--;
  907.     hot= !block->hits_left && at_end &&
  908.       keycache->warm_blocks > keycache->min_warm_blocks;
  909.     if (hot)
  910.     {
  911.       if (block->temperature == BLOCK_WARM)
  912.         keycache->warm_blocks--;
  913.       block->temperature= BLOCK_HOT;
  914.       KEYCACHE_DBUG_PRINT("unreg_request", ("#warm_blocks=%u",
  915.                            keycache->warm_blocks));
  916.     }
  917.     link_block(keycache, block, hot, (my_bool)at_end);
  918.     block->last_hit_time= keycache->keycache_time;
  919.     keycache->keycache_time++;
  920.     block= keycache->used_ins;
  921.     /* Check if we should link a hot block to the warm block */
  922.     if (block && keycache->keycache_time - block->last_hit_time >
  923. keycache->age_threshold)
  924.     {
  925.       unlink_block(keycache, block);
  926.       link_block(keycache, block, 0, 0);
  927.       if (block->temperature != BLOCK_WARM)
  928.       {
  929.         keycache->warm_blocks++;
  930.         block->temperature= BLOCK_WARM;
  931.       }
  932.       KEYCACHE_DBUG_PRINT("unreg_request", ("#warm_blocks=%u",
  933.                            keycache->warm_blocks));
  934.     }
  935.   }
  936. }
  937. /*
  938.   Remove a reader of the page in block
  939. */
  940. static inline void remove_reader(BLOCK_LINK *block)
  941. {
  942.   if (! --block->hash_link->requests && block->condvar)
  943.     keycache_pthread_cond_signal(block->condvar);
  944. }
  945. /*
  946.   Wait until the last reader of the page in block
  947.   signals on its termination
  948. */
  949. static inline void wait_for_readers(KEY_CACHE *keycache, BLOCK_LINK *block)
  950. {
  951.   struct st_my_thread_var *thread= my_thread_var;
  952.   while (block->hash_link->requests)
  953.   {
  954.     KEYCACHE_DBUG_PRINT("wait_for_readers: wait",
  955.                         ("suspend thread %ld  block %u",
  956.                          thread->id, BLOCK_NUMBER(block)));
  957.     block->condvar= &thread->suspend;
  958.     keycache_pthread_cond_wait(&thread->suspend, &keycache->cache_lock);
  959.     block->condvar= NULL;
  960.   }
  961. }
  962. /*
  963.   Add a hash link to a bucket in the hash_table
  964. */
  965. static inline void link_hash(HASH_LINK **start, HASH_LINK *hash_link)
  966. {
  967.   if (*start)
  968.     (*start)->prev= &hash_link->next;
  969.   hash_link->next= *start;
  970.   hash_link->prev= start;
  971.   *start= hash_link;
  972. }
  973. /*
  974.   Remove a hash link from the hash table
  975. */
  976. static void unlink_hash(KEY_CACHE *keycache, HASH_LINK *hash_link)
  977. {
  978.   KEYCACHE_DBUG_PRINT("unlink_hash", ("fd: %u  pos_ %lu  #requests=%u",
  979.       (uint) hash_link->file,(ulong) hash_link->diskpos, hash_link->requests));
  980.   KEYCACHE_DBUG_ASSERT(hash_link->requests == 0);
  981.   if ((*hash_link->prev= hash_link->next))
  982.     hash_link->next->prev= hash_link->prev;
  983.   hash_link->block= NULL;
  984.   if (keycache->waiting_for_hash_link.last_thread)
  985.   {
  986.     /* Signal that a free hash link has appeared */
  987.     struct st_my_thread_var *last_thread=
  988.                                keycache->waiting_for_hash_link.last_thread;
  989.     struct st_my_thread_var *first_thread= last_thread->next;
  990.     struct st_my_thread_var *next_thread= first_thread;
  991.     KEYCACHE_PAGE *first_page= (KEYCACHE_PAGE *) (first_thread->opt_info);
  992.     struct st_my_thread_var *thread;
  993.     hash_link->file= first_page->file;
  994.     hash_link->diskpos= first_page->filepos;
  995.     do
  996.     {
  997.       KEYCACHE_PAGE *page;
  998.       thread= next_thread;
  999.       page= (KEYCACHE_PAGE *) thread->opt_info;
  1000.       next_thread= thread->next;
  1001.       /*
  1002.          We notify about the event all threads that ask
  1003.          for the same page as the first thread in the queue
  1004.       */
  1005.       if (page->file == hash_link->file && page->filepos == hash_link->diskpos)
  1006.       {
  1007.         KEYCACHE_DBUG_PRINT("unlink_hash: signal", ("thread %ld", thread->id));
  1008.         keycache_pthread_cond_signal(&thread->suspend);
  1009.         unlink_from_queue(&keycache->waiting_for_hash_link, thread);
  1010.       }
  1011.     }
  1012.     while (thread != last_thread);
  1013.     link_hash(&keycache->hash_root[KEYCACHE_HASH(hash_link->file,
  1014.          hash_link->diskpos)],
  1015.               hash_link);
  1016.     return;
  1017.   }
  1018.   hash_link->next= keycache->free_hash_list;
  1019.   keycache->free_hash_list= hash_link;
  1020. }
  1021. /*
  1022.   Get the hash link for a page
  1023. */
  1024. static HASH_LINK *get_hash_link(KEY_CACHE *keycache,
  1025.                                 int file, my_off_t filepos)
  1026. {
  1027.   reg1 HASH_LINK *hash_link, **start;
  1028.   KEYCACHE_PAGE page;
  1029. #if defined(KEYCACHE_DEBUG)
  1030.   int cnt;
  1031. #endif
  1032.   KEYCACHE_DBUG_PRINT("get_hash_link", ("fd: %u  pos: %lu",
  1033.                       (uint) file,(ulong) filepos));
  1034. restart:
  1035.   /*
  1036.      Find the bucket in the hash table for the pair (file, filepos);
  1037.      start contains the head of the bucket list,
  1038.      hash_link points to the first member of the list
  1039.   */
  1040.   hash_link= *(start= &keycache->hash_root[KEYCACHE_HASH(file, filepos)]);
  1041. #if defined(KEYCACHE_DEBUG)
  1042.   cnt= 0;
  1043. #endif
  1044.   /* Look for an element for the pair (file, filepos) in the bucket chain */
  1045.   while (hash_link &&
  1046.          (hash_link->diskpos != filepos || hash_link->file != file))
  1047.   {
  1048.     hash_link= hash_link->next;
  1049. #if defined(KEYCACHE_DEBUG)
  1050.     cnt++;
  1051.     if (! (cnt <= keycache->hash_links_used))
  1052.     {
  1053.       int i;
  1054.       for (i=0, hash_link= *start ;
  1055.            i < cnt ; i++, hash_link= hash_link->next)
  1056.       {
  1057.         KEYCACHE_DBUG_PRINT("get_hash_link", ("fd: %u  pos: %lu",
  1058.             (uint) hash_link->file,(ulong) hash_link->diskpos));
  1059.       }
  1060.     }
  1061.     KEYCACHE_DBUG_ASSERT(cnt <= keycache->hash_links_used);
  1062. #endif
  1063.   }
  1064.   if (! hash_link)
  1065.   {
  1066.     /* There is no hash link in the hash table for the pair (file, filepos) */
  1067.     if (keycache->free_hash_list)
  1068.     {
  1069.       hash_link= keycache->free_hash_list;
  1070.       keycache->free_hash_list= hash_link->next;
  1071.     }
  1072.     else if (keycache->hash_links_used < keycache->hash_links)
  1073.     {
  1074.       hash_link= &keycache->hash_link_root[keycache->hash_links_used++];
  1075.     }
  1076.     else
  1077.     {
  1078.       /* Wait for a free hash link */
  1079.       struct st_my_thread_var *thread= my_thread_var;
  1080.       KEYCACHE_DBUG_PRINT("get_hash_link", ("waiting"));
  1081.       page.file= file;
  1082.       page.filepos= filepos;
  1083.       thread->opt_info= (void *) &page;
  1084.       link_into_queue(&keycache->waiting_for_hash_link, thread);
  1085.       KEYCACHE_DBUG_PRINT("get_hash_link: wait",
  1086.                         ("suspend thread %ld", thread->id));
  1087.       keycache_pthread_cond_wait(&thread->suspend,
  1088.                                  &keycache->cache_lock);
  1089.       thread->opt_info= NULL;
  1090.       goto restart;
  1091.     }
  1092.     hash_link->file= file;
  1093.     hash_link->diskpos= filepos;
  1094.     link_hash(start, hash_link);
  1095.   }
  1096.   /* Register the request for the page */
  1097.   hash_link->requests++;
  1098.   return hash_link;
  1099. }
  1100. /*
  1101.   Get a block for the file page requested by a keycache read/write operation;
  1102.   If the page is not in the cache return a free block, if there is none
  1103.   return the lru block after saving its buffer if the page is dirty.
  1104.   SYNOPSIS
  1105.     find_key_block()
  1106.       keycache            pointer to a key cache data structure
  1107.       file                handler for the file to read page from
  1108.       filepos             position of the page in the file
  1109.       init_hits_left      how initialize the block counter for the page
  1110.       wrmode              <-> get for writing
  1111.       page_st        out  {PAGE_READ,PAGE_TO_BE_READ,PAGE_WAIT_TO_BE_READ}
  1112.   RETURN VALUE
  1113.     Pointer to the found block if successful, 0 - otherwise
  1114.   NOTES.
  1115.     For the page from file positioned at filepos the function checks whether
  1116.     the page is in the key cache specified by the first parameter.
  1117.     If this is the case it immediately returns the block.
  1118.     If not, the function first chooses  a block for this page. If there is
  1119.     no not used blocks in the key cache yet, the function takes the block
  1120.     at the very beginning of the warm sub-chain. It saves the page in that
  1121.     block if it's dirty before returning the pointer to it.
  1122.     The function returns in the page_st parameter the following values:
  1123.       PAGE_READ         - if page already in the block,
  1124.       PAGE_TO_BE_READ   - if it is to be read yet by the current thread
  1125.       WAIT_TO_BE_READ   - if it is to be read by another thread
  1126.     If an error occurs THE BLOCK_ERROR bit is set in the block status.
  1127.     It might happen that there are no blocks in LRU chain (in warm part) -
  1128.     all blocks  are unlinked for some read/write operations. Then the function
  1129.     waits until first of this operations links any block back.
  1130. */
  1131. static BLOCK_LINK *find_key_block(KEY_CACHE *keycache,
  1132.                                   File file, my_off_t filepos,
  1133.                                   int init_hits_left,
  1134.                                   int wrmode, int *page_st)
  1135. {
  1136.   HASH_LINK *hash_link;
  1137.   BLOCK_LINK *block;
  1138.   int error= 0;
  1139.   int page_status;
  1140.   DBUG_ENTER("find_key_block");
  1141.   KEYCACHE_THREAD_TRACE("find_key_block:begin");
  1142.   DBUG_PRINT("enter", ("fd: %u  pos %lu  wrmode: %lu",
  1143.                        (uint) file, (ulong) filepos, (uint) wrmode));
  1144.   KEYCACHE_DBUG_PRINT("find_key_block", ("fd: %u  pos: %lu  wrmode: %lu",
  1145.                                          (uint) file, (ulong) filepos,
  1146.                                          (uint) wrmode));
  1147. #if !defined(DBUG_OFF) && defined(EXTRA_DEBUG)
  1148.   DBUG_EXECUTE("check_keycache2",
  1149.                test_key_cache(keycache, "start of find_key_block", 0););
  1150. #endif
  1151. restart:
  1152.   /* Find the hash link for the requested page (file, filepos) */
  1153.   hash_link= get_hash_link(keycache, file, filepos);
  1154.   page_status= -1;
  1155.   if ((block= hash_link->block) &&
  1156.       block->hash_link == hash_link && (block->status & BLOCK_READ))
  1157.     page_status= PAGE_READ;
  1158.   if (wrmode && keycache->resize_in_flush)
  1159.   {
  1160.     /* This is a write request during the flush phase of a resize operation */
  1161.     if (page_status != PAGE_READ)
  1162.     {
  1163.       /* We don't need the page in the cache: we are going to write on disk */
  1164.       hash_link->requests--;
  1165.       unlink_hash(keycache, hash_link);
  1166.       return 0;
  1167.     }
  1168.     if (!(block->status & BLOCK_IN_FLUSH))
  1169.     {
  1170.       hash_link->requests--;
  1171.       /*
  1172.         Remove block to invalidate the page in the block buffer
  1173.         as we are going to write directly on disk.
  1174.         Although we have an exlusive lock for the updated key part
  1175.         the control can be yieded by the current thread as we might
  1176.         have unfinished readers of other key parts in the block
  1177.         buffer. Still we are guaranteed not to have any readers
  1178.         of the key part we are writing into until the block is
  1179.         removed from the cache as we set the BLOCL_REASSIGNED
  1180.         flag (see the code below that handles reading requests).
  1181.       */
  1182.       free_block(keycache, block);
  1183.       return 0;
  1184.     }
  1185.     /* Wait intil the page is flushed on disk */
  1186.     hash_link->requests--;
  1187.     {
  1188.       struct st_my_thread_var *thread= my_thread_var;
  1189.       add_to_queue(&block->wqueue[COND_FOR_SAVED], thread);
  1190.       do
  1191.       {
  1192.         KEYCACHE_DBUG_PRINT("find_key_block: wait",
  1193.                             ("suspend thread %ld", thread->id));
  1194.         keycache_pthread_cond_wait(&thread->suspend,
  1195.                                    &keycache->cache_lock);
  1196.       }
  1197.       while(thread->next);
  1198.     }
  1199.     /* Invalidate page in the block if it has not been done yet */
  1200.     if (block->status)
  1201.       free_block(keycache, block);
  1202.     return 0;
  1203.   }
  1204.   if (page_status == PAGE_READ &&
  1205.       (block->status & (BLOCK_IN_SWITCH | BLOCK_REASSIGNED)))
  1206.   {
  1207.     /* This is a request for a page to be removed from cache */
  1208.     KEYCACHE_DBUG_PRINT("find_key_block",
  1209.                         ("request for old page in block %u "
  1210.                          "wrmode: %d  block->status: %d",
  1211.                          BLOCK_NUMBER(block), wrmode, block->status));
  1212.     /*
  1213.        Only reading requests can proceed until the old dirty page is flushed,
  1214.        all others are to be suspended, then resubmitted
  1215.     */
  1216.     if (!wrmode && !(block->status & BLOCK_REASSIGNED))
  1217.       reg_requests(keycache, block, 1);
  1218.     else
  1219.     {
  1220.       hash_link->requests--;
  1221.       KEYCACHE_DBUG_PRINT("find_key_block",
  1222.                           ("request waiting for old page to be saved"));
  1223.       {
  1224.         struct st_my_thread_var *thread= my_thread_var;
  1225.         /* Put the request into the queue of those waiting for the old page */
  1226.         add_to_queue(&block->wqueue[COND_FOR_SAVED], thread);
  1227.         /* Wait until the request can be resubmitted */
  1228.         do
  1229.         {
  1230.           KEYCACHE_DBUG_PRINT("find_key_block: wait",
  1231.                               ("suspend thread %ld", thread->id));
  1232.           keycache_pthread_cond_wait(&thread->suspend,
  1233.                                      &keycache->cache_lock);
  1234.         }
  1235.         while(thread->next);
  1236.       }
  1237.       KEYCACHE_DBUG_PRINT("find_key_block",
  1238.                           ("request for old page resubmitted"));
  1239.       /* Resubmit the request */
  1240.       goto restart;
  1241.     }
  1242.   }
  1243.   else
  1244.   {
  1245.     /* This is a request for a new page or for a page not to be removed */
  1246.     if (! block)
  1247.     {
  1248.       /* No block is assigned for the page yet */
  1249.       if (keycache->blocks_unused)
  1250.       {
  1251.         if (keycache->free_block_list)
  1252.         {
  1253.           /* There is a block in the free list. */
  1254.           block= keycache->free_block_list;
  1255.           keycache->free_block_list= block->next_used;
  1256.           block->next_used= NULL;
  1257.         }
  1258.         else
  1259.         {
  1260.           /* There are some never used blocks, take first of them */
  1261.           block= &keycache->block_root[keycache->blocks_used];
  1262.           block->buffer= ADD_TO_PTR(keycache->block_mem,
  1263.                                     ((ulong) keycache->blocks_used*
  1264.                                      keycache->key_cache_block_size),
  1265.                                     byte*);
  1266.           keycache->blocks_used++;
  1267.         }
  1268.         keycache->blocks_unused--;
  1269.         block->status= 0;
  1270.         block->length= 0;
  1271.         block->offset= keycache->key_cache_block_size;
  1272.         block->requests= 1;
  1273.         block->temperature= BLOCK_COLD;
  1274.         block->hits_left= init_hits_left;
  1275.         block->last_hit_time= 0;
  1276.         link_to_file_list(keycache, block, file, 0);
  1277.         block->hash_link= hash_link;
  1278.         hash_link->block= block;
  1279.         page_status= PAGE_TO_BE_READ;
  1280.         KEYCACHE_DBUG_PRINT("find_key_block",
  1281.                             ("got free or never used block %u",
  1282.                              BLOCK_NUMBER(block)));
  1283.       }
  1284.       else
  1285.       {
  1286. /* There are no never used blocks, use a block from the LRU chain */
  1287.         /*
  1288.           Wait until a new block is added to the LRU chain;
  1289.           several threads might wait here for the same page,
  1290.           all of them must get the same block
  1291.         */
  1292.         if (! keycache->used_last)
  1293.         {
  1294.           struct st_my_thread_var *thread= my_thread_var;
  1295.           thread->opt_info= (void *) hash_link;
  1296.           link_into_queue(&keycache->waiting_for_block, thread);
  1297.           do
  1298.           {
  1299.             KEYCACHE_DBUG_PRINT("find_key_block: wait",
  1300.                                 ("suspend thread %ld", thread->id));
  1301.             keycache_pthread_cond_wait(&thread->suspend,
  1302.                                        &keycache->cache_lock);
  1303.           }
  1304.           while (thread->next);
  1305.           thread->opt_info= NULL;
  1306.         }
  1307.         block= hash_link->block;
  1308.         if (! block)
  1309.         {
  1310.           /*
  1311.              Take the first block from the LRU chain
  1312.              unlinking it from the chain
  1313.           */
  1314.           block= keycache->used_last->next_used;
  1315.           block->hits_left= init_hits_left;
  1316.           block->last_hit_time= 0;
  1317.           reg_requests(keycache, block,1);
  1318.           hash_link->block= block;
  1319.         }
  1320.         if (block->hash_link != hash_link &&
  1321.     ! (block->status & BLOCK_IN_SWITCH) )
  1322.         {
  1323.   /* this is a primary request for a new page */
  1324.           block->status|= BLOCK_IN_SWITCH;
  1325.           KEYCACHE_DBUG_PRINT("find_key_block",
  1326.                         ("got block %u for new page", BLOCK_NUMBER(block)));
  1327.           if (block->status & BLOCK_CHANGED)
  1328.           {
  1329.     /* The block contains a dirty page - push it out of the cache */
  1330.             KEYCACHE_DBUG_PRINT("find_key_block", ("block is dirty"));
  1331.             keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1332.             /*
  1333.       The call is thread safe because only the current
  1334.       thread might change the block->hash_link value
  1335.             */
  1336.     error= my_pwrite(block->hash_link->file,
  1337.      block->buffer+block->offset,
  1338.      block->length - block->offset,
  1339.      block->hash_link->diskpos+ block->offset,
  1340.      MYF(MY_NABP | MY_WAIT_IF_FULL));
  1341.             keycache_pthread_mutex_lock(&keycache->cache_lock);
  1342.     keycache->global_cache_write++;
  1343.           }
  1344.           block->status|= BLOCK_REASSIGNED;
  1345.           if (block->hash_link)
  1346.           {
  1347.             /*
  1348.       Wait until all pending read requests
  1349.       for this page are executed
  1350.       (we could have avoided this waiting, if we had read
  1351.       a page in the cache in a sweep, without yielding control)
  1352.             */
  1353.             wait_for_readers(keycache, block);
  1354.             /* Remove the hash link for this page from the hash table */
  1355.             unlink_hash(keycache, block->hash_link);
  1356.             /* All pending requests for this page must be resubmitted */
  1357.             if (block->wqueue[COND_FOR_SAVED].last_thread)
  1358.               release_queue(&block->wqueue[COND_FOR_SAVED]);
  1359.           }
  1360.           link_to_file_list(keycache, block, file,
  1361.                             (my_bool)(block->hash_link ? 1 : 0));
  1362.           block->status= error? BLOCK_ERROR : 0;
  1363.           block->length= 0;
  1364.           block->offset= keycache->key_cache_block_size;
  1365.           block->hash_link= hash_link;
  1366.           page_status= PAGE_TO_BE_READ;
  1367.           KEYCACHE_DBUG_ASSERT(block->hash_link->block == block);
  1368.           KEYCACHE_DBUG_ASSERT(hash_link->block->hash_link == hash_link);
  1369.         }
  1370.         else
  1371.         {
  1372.           /* This is for secondary requests for a new page only */
  1373.           KEYCACHE_DBUG_PRINT("find_key_block",
  1374.                               ("block->hash_link: %p  hash_link: %p  "
  1375.                                "block->status: %u", block->hash_link,
  1376.                                hash_link, block->status ));
  1377.           page_status= (((block->hash_link == hash_link) &&
  1378.                          (block->status & BLOCK_READ)) ?
  1379.                         PAGE_READ : PAGE_WAIT_TO_BE_READ);
  1380.         }
  1381.       }
  1382.       keycache->global_cache_read++;
  1383.     }
  1384.     else
  1385.     {
  1386.       reg_requests(keycache, block, 1);
  1387.       KEYCACHE_DBUG_PRINT("find_key_block",
  1388.                           ("block->hash_link: %p  hash_link: %p  "
  1389.                            "block->status: %u", block->hash_link,
  1390.                            hash_link, block->status ));
  1391.       page_status= (((block->hash_link == hash_link) &&
  1392.                      (block->status & BLOCK_READ)) ?
  1393.                     PAGE_READ : PAGE_WAIT_TO_BE_READ);
  1394.     }
  1395.   }
  1396.   KEYCACHE_DBUG_ASSERT(page_status != -1);
  1397.   *page_st=page_status;
  1398.   KEYCACHE_DBUG_PRINT("find_key_block",
  1399.                       ("fd: %u  pos %lu  block->status %u  page_status %lu",
  1400.                        (uint) file, (ulong) filepos, block->status,
  1401.                        (uint) page_status));
  1402. #if !defined(DBUG_OFF) && defined(EXTRA_DEBUG)
  1403.   DBUG_EXECUTE("check_keycache2",
  1404.                test_key_cache(keycache, "end of find_key_block",0););
  1405. #endif
  1406.   KEYCACHE_THREAD_TRACE("find_key_block:end");
  1407.   DBUG_RETURN(block);
  1408. }
  1409. /*
  1410.   Read into a key cache block buffer from disk.
  1411.   SYNOPSIS
  1412.     read_block()
  1413.       keycache            pointer to a key cache data structure
  1414.       block               block to which buffer the data is to be read
  1415.       read_length         size of data to be read
  1416.       min_length          at least so much data must be read
  1417.       primary             <-> the current thread will read the data
  1418.   RETURN VALUE
  1419.     None
  1420.   NOTES.
  1421.     The function either reads a page data from file to the block buffer,
  1422.     or waits until another thread reads it. What page to read is determined
  1423.     by a block parameter - reference to a hash link for this page.
  1424.     If an error occurs THE BLOCK_ERROR bit is set in the block status.
  1425.     We do not report error when the size of successfully read
  1426.     portion is less than read_length, but not less than min_length.
  1427. */
  1428. static void read_block(KEY_CACHE *keycache,
  1429.                        BLOCK_LINK *block, uint read_length,
  1430.                        uint min_length, my_bool primary)
  1431. {
  1432.   uint got_length;
  1433.   /* On entry cache_lock is locked */
  1434.   KEYCACHE_THREAD_TRACE("read_block");
  1435.   if (primary)
  1436.   {
  1437.     /*
  1438.       This code is executed only by threads
  1439.       that submitted primary requests
  1440.     */
  1441.     KEYCACHE_DBUG_PRINT("read_block",
  1442.                         ("page to be read by primary request"));
  1443.     /* Page is not in buffer yet, is to be read from disk */
  1444.     keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1445.     /*
  1446.       Here other threads may step in and register as secondary readers.
  1447.       They will register in block->wqueue[COND_FOR_REQUESTED].
  1448.     */
  1449.     got_length= my_pread(block->hash_link->file, block->buffer,
  1450.                          read_length, block->hash_link->diskpos, MYF(0));
  1451.     keycache_pthread_mutex_lock(&keycache->cache_lock);
  1452.     if (got_length < min_length)
  1453.       block->status|= BLOCK_ERROR;
  1454.     else
  1455.     {
  1456.       block->status= BLOCK_READ;
  1457.       block->length= got_length;
  1458.     }
  1459.     KEYCACHE_DBUG_PRINT("read_block",
  1460.                         ("primary request: new page in cache"));
  1461.     /* Signal that all pending requests for this page now can be processed */
  1462.     if (block->wqueue[COND_FOR_REQUESTED].last_thread)
  1463.       release_queue(&block->wqueue[COND_FOR_REQUESTED]);
  1464.   }
  1465.   else
  1466.   {
  1467.     /*
  1468.       This code is executed only by threads
  1469.       that submitted secondary requests
  1470.     */
  1471.     KEYCACHE_DBUG_PRINT("read_block",
  1472.                       ("secondary request waiting for new page to be read"));
  1473.     {
  1474.       struct st_my_thread_var *thread= my_thread_var;
  1475.       /* Put the request into a queue and wait until it can be processed */
  1476.       add_to_queue(&block->wqueue[COND_FOR_REQUESTED], thread);
  1477.       do
  1478.       {
  1479.         KEYCACHE_DBUG_PRINT("read_block: wait",
  1480.                             ("suspend thread %ld", thread->id));
  1481.         keycache_pthread_cond_wait(&thread->suspend,
  1482.                                    &keycache->cache_lock);
  1483.       }
  1484.       while (thread->next);
  1485.     }
  1486.     KEYCACHE_DBUG_PRINT("read_block",
  1487.                         ("secondary request: new page in cache"));
  1488.   }
  1489. }
  1490. /*
  1491.   Read a block of data from a cached file into a buffer;
  1492.   SYNOPSIS
  1493.     key_cache_read()
  1494.       keycache            pointer to a key cache data structure
  1495.       file                handler for the file for the block of data to be read
  1496.       filepos             position of the block of data in the file
  1497.       level               determines the weight of the data
  1498.       buff                buffer to where the data must be placed
  1499.       length              length of the buffer
  1500.       block_length        length of the block in the key cache buffer
  1501.       return_buffer       return pointer to the key cache buffer with the data
  1502.   RETURN VALUE
  1503.     Returns address from where the data is placed if sucessful, 0 - otherwise.
  1504.   NOTES.
  1505.     The function ensures that a block of data of size length from file
  1506.     positioned at filepos is in the buffers for some key cache blocks.
  1507.     Then the function either copies the data into the buffer buff, or,
  1508.     if return_buffer is TRUE, it just returns the pointer to the key cache
  1509.     buffer with the data.
  1510.     Filepos must be a multiple of 'block_length', but it doesn't
  1511.     have to be a multiple of key_cache_block_size;
  1512. */
  1513. byte *key_cache_read(KEY_CACHE *keycache,
  1514.                      File file, my_off_t filepos, int level,
  1515.                      byte *buff, uint length,
  1516.      uint block_length __attribute__((unused)),
  1517.      int return_buffer __attribute__((unused)))
  1518. {
  1519.   int error=0;
  1520.   uint offset= 0;
  1521.   byte *start= buff;
  1522.   DBUG_ENTER("key_cache_read");
  1523.   DBUG_PRINT("enter", ("fd: %u  pos: %lu  length: %u",
  1524.                (uint) file, (ulong) filepos, length));
  1525.   if (keycache->can_be_used)
  1526.   {
  1527.     /* Key cache is used */
  1528.     reg1 BLOCK_LINK *block;
  1529.     uint read_length;
  1530.     uint status;
  1531.     int page_st;
  1532.     /* Read data in key_cache_block_size increments */
  1533.     do
  1534.     {
  1535.       keycache_pthread_mutex_lock(&keycache->cache_lock);
  1536.       if (!keycache->can_be_used)
  1537.       {
  1538. keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1539. goto no_key_cache;
  1540.       }
  1541.       offset= (uint) (filepos & (keycache->key_cache_block_size-1));
  1542.       filepos-= offset;
  1543.       read_length= length;
  1544.       set_if_smaller(read_length, keycache->key_cache_block_size-offset);
  1545.       KEYCACHE_DBUG_ASSERT(read_length > 0);
  1546. #ifndef THREAD
  1547.       if (block_length > keycache->key_cache_block_size || offset)
  1548. return_buffer=0;
  1549. #endif
  1550.       inc_counter_for_resize_op(keycache);
  1551.       keycache->global_cache_r_requests++;
  1552.       block=find_key_block(keycache, file, filepos, level, 0, &page_st);
  1553.       if (block->status != BLOCK_ERROR && page_st != PAGE_READ)
  1554.       {
  1555.         /* The requested page is to be read into the block buffer */
  1556.         read_block(keycache, block,
  1557.                    keycache->key_cache_block_size, read_length+offset,
  1558.                    (my_bool)(page_st == PAGE_TO_BE_READ));
  1559.       }
  1560.       else if (! (block->status & BLOCK_ERROR) &&
  1561.                block->length < read_length + offset)
  1562.       {
  1563.         /*
  1564.            Impossible if nothing goes wrong:
  1565.            this could only happen if we are using a file with
  1566.            small key blocks and are trying to read outside the file
  1567.         */
  1568.         my_errno= -1;
  1569.         block->status|= BLOCK_ERROR;
  1570.       }
  1571.       if (! ((status= block->status) & BLOCK_ERROR))
  1572.       {
  1573. #ifndef THREAD
  1574.         if (! return_buffer)
  1575. #endif
  1576.         {
  1577. #if !defined(SERIALIZED_READ_FROM_CACHE)
  1578.           keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1579. #endif
  1580.           /* Copy data from the cache buffer */
  1581.           if (!(read_length & 511))
  1582.             bmove512(buff, block->buffer+offset, read_length);
  1583.           else
  1584.             memcpy(buff, block->buffer+offset, (size_t) read_length);
  1585. #if !defined(SERIALIZED_READ_FROM_CACHE)
  1586.           keycache_pthread_mutex_lock(&keycache->cache_lock);
  1587. #endif
  1588.         }
  1589.       }
  1590.       remove_reader(block);
  1591.       /*
  1592.          Link the block into the LRU chain
  1593.          if it's the last submitted request for the block
  1594.       */
  1595.       unreg_request(keycache, block, 1);
  1596.       dec_counter_for_resize_op(keycache);
  1597.       keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1598.       if (status & BLOCK_ERROR)
  1599.         DBUG_RETURN((byte *) 0);
  1600. #ifndef THREAD
  1601.       /* This is only true if we where able to read everything in one block */
  1602.       if (return_buffer)
  1603. return (block->buffer);
  1604. #endif
  1605.       buff+= read_length;
  1606.       filepos+= read_length+offset;
  1607.     } while ((length-= read_length));
  1608.     DBUG_RETURN(start);
  1609.   }
  1610. no_key_cache: /* Key cache is not used */
  1611.   /* We can't use mutex here as the key cache may not be initialized */
  1612.   keycache->global_cache_r_requests++;
  1613.   keycache->global_cache_read++;
  1614.   if (my_pread(file, (byte*) buff, length, filepos+offset, MYF(MY_NABP)))
  1615.     error= 1;
  1616.   DBUG_RETURN(error ? (byte*) 0 : start);
  1617. }
  1618. /*
  1619.   Insert a block of file data from a buffer into key cache
  1620.   SYNOPSIS
  1621.     key_cache_insert()
  1622.     keycache            pointer to a key cache data structure
  1623.     file                handler for the file to insert data from
  1624.     filepos             position of the block of data in the file to insert
  1625.     level               determines the weight of the data
  1626.     buff                buffer to read data from
  1627.     length              length of the data in the buffer
  1628.   NOTES
  1629.     This is used by MyISAM to move all blocks from a index file to the key
  1630.     cache
  1631.   RETURN VALUE
  1632.     0 if a success, 1 - otherwise.
  1633. */
  1634. int key_cache_insert(KEY_CACHE *keycache,
  1635.                      File file, my_off_t filepos, int level,
  1636.                      byte *buff, uint length)
  1637. {
  1638.   DBUG_ENTER("key_cache_insert");
  1639.   DBUG_PRINT("enter", ("fd: %u  pos: %lu  length: %u",
  1640.                (uint) file,(ulong) filepos, length));
  1641.   if (keycache->can_be_used)
  1642.   {
  1643.     /* Key cache is used */
  1644.     reg1 BLOCK_LINK *block;
  1645.     uint read_length;
  1646.     int page_st;
  1647.     int error;
  1648.     do
  1649.     {
  1650.       uint offset;
  1651.       keycache_pthread_mutex_lock(&keycache->cache_lock);
  1652.       if (!keycache->can_be_used)
  1653.       {
  1654. keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1655. DBUG_RETURN(0);
  1656.       }
  1657.       offset= (uint) (filepos & (keycache->key_cache_block_size-1));
  1658.       /* Read data into key cache from buff in key_cache_block_size incr. */
  1659.       filepos-= offset;
  1660.       read_length= length;
  1661.       set_if_smaller(read_length, keycache->key_cache_block_size-offset);
  1662.       KEYCACHE_DBUG_ASSERT(read_length > 0);
  1663.       inc_counter_for_resize_op(keycache);
  1664.       keycache->global_cache_r_requests++;
  1665.       block= find_key_block(keycache, file, filepos, level, 0, &page_st);
  1666.       if (block->status != BLOCK_ERROR && page_st != PAGE_READ)
  1667.       {
  1668.         /* The requested page is to be read into the block buffer */
  1669. #if !defined(SERIALIZED_READ_FROM_CACHE)
  1670.         keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1671.         /*
  1672.           Here other threads may step in and register as secondary readers.
  1673.           They will register in block->wqueue[COND_FOR_REQUESTED].
  1674.         */
  1675. #endif
  1676.         /* Copy data from buff */
  1677.         if (!(read_length & 511))
  1678.           bmove512(block->buffer+offset, buff, read_length);
  1679.         else
  1680.           memcpy(block->buffer+offset, buff, (size_t) read_length);
  1681. #if !defined(SERIALIZED_READ_FROM_CACHE)
  1682.         keycache_pthread_mutex_lock(&keycache->cache_lock);
  1683.         /* Here we are alone again. */
  1684. #endif
  1685.         block->status= BLOCK_READ;
  1686.         block->length= read_length+offset;
  1687.         KEYCACHE_DBUG_PRINT("key_cache_insert",
  1688.                             ("primary request: new page in cache"));
  1689.         /* Signal that all pending requests for this now can be processed. */
  1690.         if (block->wqueue[COND_FOR_REQUESTED].last_thread)
  1691.           release_queue(&block->wqueue[COND_FOR_REQUESTED]);
  1692.       }
  1693.       remove_reader(block);
  1694.       /*
  1695.          Link the block into the LRU chain
  1696.          if it's the last submitted request for the block
  1697.       */
  1698.       unreg_request(keycache, block, 1);
  1699.       error= (block->status & BLOCK_ERROR);
  1700.       dec_counter_for_resize_op(keycache);
  1701.       keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1702.       if (error)
  1703.         DBUG_RETURN(1);
  1704.       buff+= read_length;
  1705.       filepos+= read_length+offset;
  1706.     } while ((length-= read_length));
  1707.   }
  1708.   DBUG_RETURN(0);
  1709. }
  1710. /*
  1711.   Write a buffer into a cached file.
  1712.   SYNOPSIS
  1713.     key_cache_write()
  1714.       keycache            pointer to a key cache data structure
  1715.       file                handler for the file to write data to
  1716.       filepos             position in the file to write data to
  1717.       level               determines the weight of the data
  1718.       buff                buffer with the data
  1719.       length              length of the buffer
  1720.       dont_write          if is 0 then all dirty pages involved in writing
  1721.                           should have been flushed from key cache
  1722.   RETURN VALUE
  1723.     0 if a success, 1 - otherwise.
  1724.   NOTES.
  1725.     The function copies the data of size length from buff into buffers
  1726.     for key cache blocks that are  assigned to contain the portion of
  1727.     the file starting with position filepos.
  1728.     It ensures that this data is flushed to the file if dont_write is FALSE.
  1729.     Filepos must be a multiple of 'block_length', but it doesn't
  1730.     have to be a multiple of key_cache_block_size;
  1731. */
  1732. int key_cache_write(KEY_CACHE *keycache,
  1733.                     File file, my_off_t filepos, int level,
  1734.                     byte *buff, uint length,
  1735.                     uint block_length  __attribute__((unused)),
  1736.                     int dont_write)
  1737. {
  1738.   reg1 BLOCK_LINK *block;
  1739.   int error=0;
  1740.   DBUG_ENTER("key_cache_write");
  1741.   DBUG_PRINT("enter",
  1742.      ("fd: %u  pos: %lu  length: %u  block_length: %u  key_block_length: %u",
  1743.       (uint) file, (ulong) filepos, length, block_length,
  1744.       keycache ? keycache->key_cache_block_size : 0));
  1745.   if (!dont_write)
  1746.   {
  1747.     /* Force writing from buff into disk */
  1748.     keycache->global_cache_write++;
  1749.     if (my_pwrite(file, buff, length, filepos, MYF(MY_NABP | MY_WAIT_IF_FULL)))
  1750.       DBUG_RETURN(1);
  1751.   }
  1752. #if !defined(DBUG_OFF) && defined(EXTRA_DEBUG)
  1753.   DBUG_EXECUTE("check_keycache",
  1754.                test_key_cache(keycache, "start of key_cache_write", 1););
  1755. #endif
  1756.   if (keycache->can_be_used)
  1757.   {
  1758.     /* Key cache is used */
  1759.     uint read_length;
  1760.     int page_st;
  1761.     do
  1762.     {
  1763.       uint offset;
  1764.       keycache_pthread_mutex_lock(&keycache->cache_lock);
  1765.       if (!keycache->can_be_used)
  1766.       {
  1767. keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1768. goto no_key_cache;
  1769.       }
  1770.       offset= (uint) (filepos & (keycache->key_cache_block_size-1));
  1771.       /* Write data in key_cache_block_size increments */
  1772.       filepos-= offset;
  1773.       read_length= length;
  1774.       set_if_smaller(read_length, keycache->key_cache_block_size-offset);
  1775.       KEYCACHE_DBUG_ASSERT(read_length > 0);
  1776.       inc_counter_for_resize_op(keycache);
  1777.       keycache->global_cache_w_requests++;
  1778.       block= find_key_block(keycache, file, filepos, level, 1, &page_st);
  1779.       if (!block)
  1780.       {
  1781.         /* It happens only for requests submitted during resize operation */
  1782.         dec_counter_for_resize_op(keycache);
  1783. keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1784. if (dont_write)
  1785.         {
  1786.           keycache->global_cache_w_requests++;
  1787.           keycache->global_cache_write++;
  1788.           if (my_pwrite(file, (byte*) buff, length, filepos,
  1789.         MYF(MY_NABP | MY_WAIT_IF_FULL)))
  1790.             error=1;
  1791. }
  1792.         goto next_block;
  1793.       }
  1794.       if (block->status != BLOCK_ERROR && page_st != PAGE_READ &&
  1795.           (offset || read_length < keycache->key_cache_block_size))
  1796.         read_block(keycache, block,
  1797.                    offset + read_length >= keycache->key_cache_block_size?
  1798.                    offset : keycache->key_cache_block_size,
  1799.                    offset,(my_bool)(page_st == PAGE_TO_BE_READ));
  1800.       if (!dont_write)
  1801.       {
  1802. /* buff has been written to disk at start */
  1803.         if ((block->status & BLOCK_CHANGED) &&
  1804.             (!offset && read_length >= keycache->key_cache_block_size))
  1805.              link_to_file_list(keycache, block, block->hash_link->file, 1);
  1806.       }
  1807.       else if (! (block->status & BLOCK_CHANGED))
  1808.         link_to_changed_list(keycache, block);
  1809.       set_if_smaller(block->offset, offset);
  1810.       set_if_bigger(block->length, read_length+offset);
  1811.       if (! (block->status & BLOCK_ERROR))
  1812.       {
  1813.         if (!(read_length & 511))
  1814.   bmove512(block->buffer+offset, buff, read_length);
  1815.         else
  1816.           memcpy(block->buffer+offset, buff, (size_t) read_length);
  1817.       }
  1818.       block->status|=BLOCK_READ;
  1819.       /* Unregister the request */
  1820.       block->hash_link->requests--;
  1821.       unreg_request(keycache, block, 1);
  1822.       if (block->status & BLOCK_ERROR)
  1823.       {
  1824.         keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1825.         error= 1;
  1826.         break;
  1827.       }
  1828.       dec_counter_for_resize_op(keycache);
  1829.       keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1830.     next_block:
  1831.       buff+= read_length;
  1832.       filepos+= read_length+offset;
  1833.       offset= 0;
  1834.     } while ((length-= read_length));
  1835.     goto end;
  1836.   }
  1837. no_key_cache:
  1838.   /* Key cache is not used */
  1839.   if (dont_write)
  1840.   {
  1841.     keycache->global_cache_w_requests++;
  1842.     keycache->global_cache_write++;
  1843.     if (my_pwrite(file, (byte*) buff, length, filepos,
  1844.   MYF(MY_NABP | MY_WAIT_IF_FULL)))
  1845.       error=1;
  1846.   }
  1847. end:
  1848. #if !defined(DBUG_OFF) && defined(EXTRA_DEBUG)
  1849.   DBUG_EXECUTE("exec",
  1850.                test_key_cache(keycache, "end of key_cache_write", 1););
  1851. #endif
  1852.   DBUG_RETURN(error);
  1853. }
  1854. /*
  1855.   Free block: remove reference to it from hash table,
  1856.   remove it from the chain file of dirty/clean blocks
  1857.   and add it to the free list.
  1858. */
  1859. static void free_block(KEY_CACHE *keycache, BLOCK_LINK *block)
  1860. {
  1861.   KEYCACHE_THREAD_TRACE("free block");
  1862.   KEYCACHE_DBUG_PRINT("free_block",
  1863.                       ("block %u to be freed, hash_link %p",
  1864.                        BLOCK_NUMBER(block), block->hash_link));
  1865.   if (block->hash_link)
  1866.   {
  1867.     /*
  1868.       While waiting for readers to finish, new readers might request the
  1869.       block. But since we set block->status|= BLOCK_REASSIGNED, they
  1870.       will wait on block->wqueue[COND_FOR_SAVED]. They must be signalled
  1871.       later.
  1872.     */
  1873.     block->status|= BLOCK_REASSIGNED;
  1874.     wait_for_readers(keycache, block);
  1875.     unlink_hash(keycache, block->hash_link);
  1876.   }
  1877.   unlink_changed(block);
  1878.   block->status= 0;
  1879.   block->length= 0;
  1880.   block->offset= keycache->key_cache_block_size;
  1881.   KEYCACHE_THREAD_TRACE("free block");
  1882.   KEYCACHE_DBUG_PRINT("free_block",
  1883.                       ("block is freed"));
  1884.   unreg_request(keycache, block, 0);
  1885.   block->hash_link= NULL;
  1886.   /* Remove the free block from the LRU ring. */
  1887.   unlink_block(keycache, block);
  1888.   if (block->temperature == BLOCK_WARM)
  1889.     keycache->warm_blocks--;
  1890.   block->temperature= BLOCK_COLD;
  1891.   /* Insert the free block in the free list. */
  1892.   block->next_used= keycache->free_block_list;
  1893.   keycache->free_block_list= block;
  1894.   /* Keep track of the number of currently unused blocks. */
  1895.   keycache->blocks_unused++;
  1896.   /* All pending requests for this page must be resubmitted. */
  1897.   if (block->wqueue[COND_FOR_SAVED].last_thread)
  1898.     release_queue(&block->wqueue[COND_FOR_SAVED]);
  1899. }
  1900. static int cmp_sec_link(BLOCK_LINK **a, BLOCK_LINK **b)
  1901. {
  1902.   return (((*a)->hash_link->diskpos < (*b)->hash_link->diskpos) ? -1 :
  1903.       ((*a)->hash_link->diskpos > (*b)->hash_link->diskpos) ? 1 : 0);
  1904. }
  1905. /*
  1906.   Flush a portion of changed blocks to disk,
  1907.   free used blocks if requested
  1908. */
  1909. static int flush_cached_blocks(KEY_CACHE *keycache,
  1910.                                File file, BLOCK_LINK **cache,
  1911.                                BLOCK_LINK **end,
  1912.                                enum flush_type type)
  1913. {
  1914.   int error;
  1915.   int last_errno= 0;
  1916.   uint count= end-cache;
  1917.   /* Don't lock the cache during the flush */
  1918.   keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1919.   /*
  1920.      As all blocks referred in 'cache' are marked by BLOCK_IN_FLUSH
  1921.      we are guarunteed no thread will change them
  1922.   */
  1923.   qsort((byte*) cache, count, sizeof(*cache), (qsort_cmp) cmp_sec_link);
  1924.   keycache_pthread_mutex_lock(&keycache->cache_lock);
  1925.   for ( ; cache != end ; cache++)
  1926.   {
  1927.     BLOCK_LINK *block= *cache;
  1928.     KEYCACHE_DBUG_PRINT("flush_cached_blocks",
  1929.                         ("block %u to be flushed", BLOCK_NUMBER(block)));
  1930.     keycache_pthread_mutex_unlock(&keycache->cache_lock);
  1931.     error= my_pwrite(file,
  1932.      block->buffer+block->offset,
  1933.      block->length - block->offset,
  1934.                      block->hash_link->diskpos+ block->offset,
  1935.                      MYF(MY_NABP | MY_WAIT_IF_FULL));
  1936.     keycache_pthread_mutex_lock(&keycache->cache_lock);
  1937.     keycache->global_cache_write++;
  1938.     if (error)
  1939.     {
  1940.       block->status|= BLOCK_ERROR;
  1941.       if (!last_errno)
  1942.         last_errno= errno ? errno : -1;
  1943.     }
  1944.     /*
  1945.       Let to proceed for possible waiting requests to write to the block page.
  1946.       It might happen only during an operation to resize the key cache.
  1947.     */
  1948.     if (block->wqueue[COND_FOR_SAVED].last_thread)
  1949.       release_queue(&block->wqueue[COND_FOR_SAVED]);
  1950.     /* type will never be FLUSH_IGNORE_CHANGED here */
  1951.     if (! (type == FLUSH_KEEP || type == FLUSH_FORCE_WRITE))
  1952.     {
  1953.       keycache->blocks_changed--;
  1954.       keycache->global_blocks_changed--;
  1955.       free_block(keycache, block);
  1956.     }
  1957.     else
  1958.     {
  1959.       block->status&= ~BLOCK_IN_FLUSH;
  1960.       link_to_file_list(keycache, block, file, 1);
  1961.       unreg_request(keycache, block, 1);
  1962.     }
  1963.   }
  1964.   return last_errno;
  1965. }
  1966. /*
  1967.   flush all key blocks for a file to disk, but don't do any mutex locks
  1968.     flush_key_blocks_int()
  1969.       keycache            pointer to a key cache data structure
  1970.       file                handler for the file to flush to
  1971.       flush_type          type of the flush
  1972.   NOTES
  1973.     This function doesn't do any mutex locks because it needs to be called both
  1974.     from flush_key_blocks and flush_all_key_blocks (the later one does the
  1975.     mutex lock in the resize_key_cache() function).
  1976.   RETURN
  1977.     0   ok
  1978.     1  error
  1979. */
  1980. static int flush_key_blocks_int(KEY_CACHE *keycache,
  1981. File file, enum flush_type type)
  1982. {
  1983.   BLOCK_LINK *cache_buff[FLUSH_CACHE],**cache;
  1984.   int last_errno= 0;
  1985.   DBUG_ENTER("flush_key_blocks_int");
  1986.   DBUG_PRINT("enter",("file: %d  blocks_used: %d  blocks_changed: %d",
  1987.               file, keycache->blocks_used, keycache->blocks_changed));
  1988. #if !defined(DBUG_OFF) && defined(EXTRA_DEBUG)
  1989.     DBUG_EXECUTE("check_keycache",
  1990.                  test_key_cache(keycache, "start of flush_key_blocks", 0););
  1991. #endif
  1992.   cache= cache_buff;
  1993.   if (keycache->disk_blocks > 0 &&
  1994.       (!my_disable_flush_key_blocks || type != FLUSH_KEEP))
  1995.   {
  1996.     /* Key cache exists and flush is not disabled */
  1997.     int error= 0;
  1998.     uint count= 0;
  1999.     BLOCK_LINK **pos,**end;
  2000.     BLOCK_LINK *first_in_switch= NULL;
  2001.     BLOCK_LINK *block, *next;
  2002. #if defined(KEYCACHE_DEBUG)
  2003.     uint cnt=0;
  2004. #endif
  2005.     if (type != FLUSH_IGNORE_CHANGED)
  2006.     {
  2007.       /*
  2008.          Count how many key blocks we have to cache to be able
  2009.          to flush all dirty pages with minimum seek moves
  2010.       */
  2011.       for (block= keycache->changed_blocks[FILE_HASH(file)] ;
  2012.            block ;
  2013.            block= block->next_changed)
  2014.       {
  2015.         if (block->hash_link->file == file)
  2016.         {
  2017.           count++;
  2018.           KEYCACHE_DBUG_ASSERT(count<= keycache->blocks_used);
  2019.         }
  2020.       }
  2021.       /* Allocate a new buffer only if its bigger than the one we have */
  2022.       if (count > FLUSH_CACHE &&
  2023.           !(cache= (BLOCK_LINK**) my_malloc(sizeof(BLOCK_LINK*)*count,
  2024.                                             MYF(0))))
  2025.       {
  2026.         cache= cache_buff;
  2027.         count= FLUSH_CACHE;
  2028.       }
  2029.     }
  2030.     /* Retrieve the blocks and write them to a buffer to be flushed */
  2031. restart:
  2032.     end= (pos= cache)+count;
  2033.     for (block= keycache->changed_blocks[FILE_HASH(file)] ;
  2034.          block ;
  2035.          block= next)
  2036.     {
  2037. #if defined(KEYCACHE_DEBUG)
  2038.       cnt++;
  2039.       KEYCACHE_DBUG_ASSERT(cnt <= keycache->blocks_used);
  2040. #endif
  2041.       next= block->next_changed;
  2042.       if (block->hash_link->file == file)
  2043.       {
  2044.         /*
  2045.            Mark the block with BLOCK_IN_FLUSH in order not to let
  2046.            other threads to use it for new pages and interfere with
  2047.            our sequence ot flushing dirty file pages
  2048.         */
  2049.         block->status|= BLOCK_IN_FLUSH;
  2050.         if (! (block->status & BLOCK_IN_SWITCH))
  2051.         {
  2052.   /*
  2053.     We care only for the blocks for which flushing was not
  2054.     initiated by other threads as a result of page swapping
  2055.           */
  2056.           reg_requests(keycache, block, 1);
  2057.           if (type != FLUSH_IGNORE_CHANGED)
  2058.           {
  2059.     /* It's not a temporary file */
  2060.             if (pos == end)
  2061.             {
  2062.       /*
  2063. This happens only if there is not enough
  2064. memory for the big block
  2065.               */
  2066.               if ((error= flush_cached_blocks(keycache, file, cache,
  2067.                                               end,type)))
  2068.                 last_errno=error;
  2069.               /*
  2070. Restart the scan as some other thread might have changed
  2071. the changed blocks chain: the blocks that were in switch
  2072. state before the flush started have to be excluded
  2073.               */
  2074.               goto restart;
  2075.             }
  2076.             *pos++= block;
  2077.           }
  2078.           else
  2079.           {
  2080.             /* It's a temporary file */
  2081.             keycache->blocks_changed--;
  2082.     keycache->global_blocks_changed--;
  2083.             free_block(keycache, block);
  2084.           }
  2085.         }
  2086.         else
  2087.         {
  2088.   /* Link the block into a list of blocks 'in switch' */
  2089.           unlink_changed(block);
  2090.           link_changed(block, &first_in_switch);
  2091.         }
  2092.       }
  2093.     }
  2094.     if (pos != cache)
  2095.     {
  2096.       if ((error= flush_cached_blocks(keycache, file, cache, pos, type)))
  2097.         last_errno= error;
  2098.     }
  2099.     /* Wait until list of blocks in switch is empty */
  2100.     while (first_in_switch)
  2101.     {
  2102. #if defined(KEYCACHE_DEBUG)
  2103.       cnt= 0;
  2104. #endif
  2105.       block= first_in_switch;
  2106.       {
  2107.         struct st_my_thread_var *thread= my_thread_var;
  2108.         add_to_queue(&block->wqueue[COND_FOR_SAVED], thread);
  2109.         do
  2110.         {
  2111.           KEYCACHE_DBUG_PRINT("flush_key_blocks_int: wait",
  2112.                               ("suspend thread %ld", thread->id));
  2113.           keycache_pthread_cond_wait(&thread->suspend,
  2114.                                      &keycache->cache_lock);
  2115.         }
  2116.         while (thread->next);
  2117.       }
  2118. #if defined(KEYCACHE_DEBUG)
  2119.       cnt++;
  2120.       KEYCACHE_DBUG_ASSERT(cnt <= keycache->blocks_used);
  2121. #endif
  2122.     }
  2123.     /* The following happens very seldom */
  2124.     if (! (type == FLUSH_KEEP || type == FLUSH_FORCE_WRITE))
  2125.     {
  2126. #if defined(KEYCACHE_DEBUG)
  2127.       cnt=0;
  2128. #endif
  2129.       for (block= keycache->file_blocks[FILE_HASH(file)] ;
  2130.            block ;
  2131.            block= next)
  2132.       {
  2133. #if defined(KEYCACHE_DEBUG)
  2134.         cnt++;
  2135.         KEYCACHE_DBUG_ASSERT(cnt <= keycache->blocks_used);
  2136. #endif
  2137.         next= block->next_changed;
  2138.         if (block->hash_link->file == file &&
  2139.             (! (block->status & BLOCK_CHANGED)
  2140.              || type == FLUSH_IGNORE_CHANGED))
  2141.         {
  2142.           reg_requests(keycache, block, 1);
  2143.           free_block(keycache, block);
  2144.         }
  2145.       }
  2146.     }
  2147.   }
  2148. #ifndef DBUG_OFF
  2149.   DBUG_EXECUTE("check_keycache",
  2150.                test_key_cache(keycache, "end of flush_key_blocks", 0););
  2151. #endif
  2152.   if (cache != cache_buff)
  2153.     my_free((gptr) cache, MYF(0));
  2154.   if (last_errno)
  2155.     errno=last_errno;                /* Return first error */
  2156.   DBUG_RETURN(last_errno != 0);
  2157. }
  2158. /*
  2159.   Flush all blocks for a file to disk
  2160.   SYNOPSIS
  2161.     flush_key_blocks()
  2162.       keycache            pointer to a key cache data structure
  2163.       file                handler for the file to flush to
  2164.       flush_type          type of the flush
  2165.   RETURN
  2166.     0   ok
  2167.     1  error
  2168. */
  2169. int flush_key_blocks(KEY_CACHE *keycache,
  2170.                      File file, enum flush_type type)
  2171. {
  2172.   int res;
  2173.   DBUG_ENTER("flush_key_blocks");
  2174.   DBUG_PRINT("enter", ("keycache: 0x%lx", keycache));
  2175.   if (keycache->disk_blocks <= 0)
  2176.     DBUG_RETURN(0);
  2177.   keycache_pthread_mutex_lock(&keycache->cache_lock);
  2178.   inc_counter_for_resize_op(keycache);
  2179.   res= flush_key_blocks_int(keycache, file, type);
  2180.   dec_counter_for_resize_op(keycache);
  2181.   keycache_pthread_mutex_unlock(&keycache->cache_lock);
  2182.   DBUG_RETURN(res);
  2183. }
  2184. /*
  2185.   Flush all blocks in the key cache to disk
  2186. */
  2187. static int flush_all_key_blocks(KEY_CACHE *keycache)
  2188. {
  2189. #if defined(KEYCACHE_DEBUG)
  2190.   uint cnt=0;
  2191. #endif
  2192.   while (keycache->blocks_changed > 0)
  2193.   {
  2194.     BLOCK_LINK *block;
  2195.     for (block= keycache->used_last->next_used ; ; block=block->next_used)
  2196.     {
  2197.       if (block->hash_link)
  2198.       {
  2199. #if defined(KEYCACHE_DEBUG)
  2200.         cnt++;
  2201.         KEYCACHE_DBUG_ASSERT(cnt <= keycache->blocks_used);
  2202. #endif
  2203.         if (flush_key_blocks_int(keycache, block->hash_link->file,
  2204.  FLUSH_RELEASE))
  2205.           return 1;
  2206.         break;
  2207.       }
  2208.       if (block == keycache->used_last)
  2209.         break;
  2210.     }
  2211.   }
  2212.   return 0;
  2213. }
  2214. /*
  2215.   Reset the counters of a key cache.
  2216.   SYNOPSIS
  2217.     reset_key_cache_counters()
  2218.     name       the name of a key cache
  2219.     key_cache  pointer to the key kache to be reset
  2220.   DESCRIPTION
  2221.    This procedure is used by process_key_caches() to reset the counters of all
  2222.    currently used key caches, both the default one and the named ones.
  2223.   RETURN
  2224.     0 on success (always because it can't fail)
  2225. */
  2226. int reset_key_cache_counters(const char *name, KEY_CACHE *key_cache)
  2227. {
  2228.   DBUG_ENTER("reset_key_cache_counters");
  2229.   if (!key_cache->key_cache_inited)
  2230.   {
  2231.     DBUG_PRINT("info", ("Key cache %s not initialized.", name));
  2232.     DBUG_RETURN(0);
  2233.   }
  2234.   DBUG_PRINT("info", ("Resetting counters for key cache %s.", name));
  2235.   key_cache->global_blocks_changed= 0;   /* Key_blocks_not_flushed */
  2236.   key_cache->global_cache_r_requests= 0; /* Key_read_requests */
  2237.   key_cache->global_cache_read= 0;       /* Key_reads */
  2238.   key_cache->global_cache_w_requests= 0; /* Key_write_requests */
  2239.   key_cache->global_cache_write= 0;      /* Key_writes */
  2240.   DBUG_RETURN(0);
  2241. }
  2242. #ifndef DBUG_OFF
  2243. /*
  2244.   Test if disk-cache is ok
  2245. */
  2246. static void test_key_cache(KEY_CACHE *keycache __attribute__((unused)),
  2247.                            const char *where __attribute__((unused)),
  2248.                            my_bool lock __attribute__((unused)))
  2249. {
  2250.   /* TODO */
  2251. }
  2252. #endif
  2253. #if defined(KEYCACHE_TIMEOUT)
  2254. #define KEYCACHE_DUMP_FILE  "keycache_dump.txt"
  2255. #define MAX_QUEUE_LEN  100
  2256. static void keycache_dump(KEY_CACHE *keycache)
  2257. {
  2258.   FILE *keycache_dump_file=fopen(KEYCACHE_DUMP_FILE, "w");
  2259.   struct st_my_thread_var *thread_var= my_thread_var;
  2260.   struct st_my_thread_var *last;
  2261.   struct st_my_thread_var *thread;
  2262.   BLOCK_LINK *block;
  2263.   HASH_LINK *hash_link;
  2264.   KEYCACHE_PAGE *page;
  2265.   uint i;
  2266.   fprintf(keycache_dump_file, "thread:%un", thread->id);
  2267.   i=0;
  2268.   thread=last=waiting_for_hash_link.last_thread;
  2269.   fprintf(keycache_dump_file, "queue of threads waiting for hash linkn");
  2270.   if (thread)
  2271.     do
  2272.     {
  2273.       thread=thread->next;
  2274.       page= (KEYCACHE_PAGE *) thread->opt_info;
  2275.       fprintf(keycache_dump_file,
  2276.               "thread:%u, (file,filepos)=(%u,%lu)n",
  2277.               thread->id,(uint) page->file,(ulong) page->filepos);
  2278.       if (++i == MAX_QUEUE_LEN)
  2279.         break;
  2280.     }
  2281.     while (thread != last);
  2282.   i=0;
  2283.   thread=last=waiting_for_block.last_thread;
  2284.   fprintf(keycache_dump_file, "queue of threads waiting for blockn");
  2285.   if (thread)
  2286.     do
  2287.     {
  2288.       thread=thread->next;
  2289.       hash_link= (HASH_LINK *) thread->opt_info;
  2290.       fprintf(keycache_dump_file,
  2291.         "thread:%u hash_link:%u (file,filepos)=(%u,%lu)n",
  2292.         thread->id, (uint) HASH_LINK_NUMBER(hash_link),
  2293.         (uint) hash_link->file,(ulong) hash_link->diskpos);
  2294.       if (++i == MAX_QUEUE_LEN)
  2295.         break;
  2296.     }
  2297.     while (thread != last);
  2298.   for (i=0 ; i< keycache->blocks_used ; i++)
  2299.   {
  2300.     int j;
  2301.     block= &keycache->block_root[i];
  2302.     hash_link= block->hash_link;
  2303.     fprintf(keycache_dump_file,
  2304.             "block:%u hash_link:%d status:%x #requests=%u waiting_for_readers:%dn",
  2305.             i, (int) (hash_link ? HASH_LINK_NUMBER(hash_link) : -1),
  2306.             block->status, block->requests, block->condvar ? 1 : 0);
  2307.     for (j=0 ; j < 2; j++)
  2308.     {
  2309.       KEYCACHE_WQUEUE *wqueue=&block->wqueue[j];
  2310.       thread= last= wqueue->last_thread;
  2311.       fprintf(keycache_dump_file, "queue #%dn", j);
  2312.       if (thread)
  2313.       {
  2314.         do
  2315.         {
  2316.           thread=thread->next;
  2317.           fprintf(keycache_dump_file,
  2318.                   "thread:%un", thread->id);
  2319.           if (++i == MAX_QUEUE_LEN)
  2320.             break;
  2321.         }
  2322.         while (thread != last);
  2323.       }
  2324.     }
  2325.   }
  2326.   fprintf(keycache_dump_file, "LRU chain:");
  2327.   block= keycache= used_last;
  2328.   if (block)
  2329.   {
  2330.     do
  2331.     {
  2332.       block= block->next_used;
  2333.       fprintf(keycache_dump_file,
  2334.               "block:%u, ", BLOCK_NUMBER(block));
  2335.     }
  2336.     while (block != keycache->used_last);
  2337.   }
  2338.   fprintf(keycache_dump_file, "n");
  2339.   fclose(keycache_dump_file);
  2340. }
  2341. #endif /* defined(KEYCACHE_TIMEOUT) */
  2342. #if defined(KEYCACHE_TIMEOUT) && !defined(__WIN__)
  2343. static int keycache_pthread_cond_wait(pthread_cond_t *cond,
  2344.                                       pthread_mutex_t *mutex)
  2345. {
  2346.   int rc;
  2347.   struct timeval  now;            /* time when we started waiting        */
  2348.   struct timespec timeout;        /* timeout value for the wait function */
  2349.   struct timezone tz;
  2350. #if defined(KEYCACHE_DEBUG)
  2351.   int cnt=0;
  2352. #endif
  2353.   /* Get current time */
  2354.   gettimeofday(&now, &tz);
  2355.   /* Prepare timeout value */
  2356.   timeout.tv_sec= now.tv_sec + KEYCACHE_TIMEOUT;
  2357.   timeout.tv_nsec= now.tv_usec * 1000; /* timeval uses microseconds.         */
  2358.                                         /* timespec uses nanoseconds.         */
  2359.                                         /* 1 nanosecond = 1000 micro seconds. */
  2360.   KEYCACHE_THREAD_TRACE_END("started waiting");
  2361. #if defined(KEYCACHE_DEBUG)
  2362.   cnt++;
  2363.   if (cnt % 100 == 0)
  2364.     fprintf(keycache_debug_log, "waiting...n");
  2365.     fflush(keycache_debug_log);
  2366. #endif
  2367.   rc= pthread_cond_timedwait(cond, mutex, &timeout);
  2368.   KEYCACHE_THREAD_TRACE_BEGIN("finished waiting");
  2369. #if defined(KEYCACHE_DEBUG)
  2370.   if (rc == ETIMEDOUT)
  2371.   {
  2372.     fprintf(keycache_debug_log,"aborted by keycache timeoutn");
  2373.     fclose(keycache_debug_log);
  2374.     abort();
  2375.   }
  2376. #endif
  2377.   if (rc == ETIMEDOUT)
  2378.     keycache_dump();
  2379. #if defined(KEYCACHE_DEBUG)
  2380.   KEYCACHE_DBUG_ASSERT(rc != ETIMEDOUT);
  2381. #else
  2382.   assert(rc != ETIMEDOUT);
  2383. #endif
  2384.   return rc;
  2385. }
  2386. #else
  2387. #if defined(KEYCACHE_DEBUG)
  2388. static int keycache_pthread_cond_wait(pthread_cond_t *cond,
  2389.                                       pthread_mutex_t *mutex)
  2390. {
  2391.   int rc;
  2392.   KEYCACHE_THREAD_TRACE_END("started waiting");
  2393.   rc= pthread_cond_wait(cond, mutex);
  2394.   KEYCACHE_THREAD_TRACE_BEGIN("finished waiting");
  2395.   return rc;
  2396. }
  2397. #endif
  2398. #endif /* defined(KEYCACHE_TIMEOUT) && !defined(__WIN__) */
  2399. #if defined(KEYCACHE_DEBUG)
  2400. static int keycache_pthread_mutex_lock(pthread_mutex_t *mutex)
  2401. {
  2402.   int rc;
  2403.   rc= pthread_mutex_lock(mutex);
  2404.   KEYCACHE_THREAD_TRACE_BEGIN("");
  2405.   return rc;
  2406. }
  2407. static void keycache_pthread_mutex_unlock(pthread_mutex_t *mutex)
  2408. {
  2409.   KEYCACHE_THREAD_TRACE_END("");
  2410.   pthread_mutex_unlock(mutex);
  2411. }
  2412. static int keycache_pthread_cond_signal(pthread_cond_t *cond)
  2413. {
  2414.   int rc;
  2415.   KEYCACHE_THREAD_TRACE("signal");
  2416.   rc= pthread_cond_signal(cond);
  2417.   return rc;
  2418. }
  2419. #if defined(KEYCACHE_DEBUG_LOG)
  2420. static void keycache_debug_print(const char * fmt,...)
  2421. {
  2422.   va_list args;
  2423.   va_start(args,fmt);
  2424.   if (keycache_debug_log)
  2425.   {
  2426.     VOID(vfprintf(keycache_debug_log, fmt, args));
  2427.     VOID(fputc('n',keycache_debug_log));
  2428.   }
  2429.   va_end(args);
  2430. }
  2431. #endif /* defined(KEYCACHE_DEBUG_LOG) */
  2432. #if defined(KEYCACHE_DEBUG_LOG)
  2433. void keycache_debug_log_close(void)
  2434. {
  2435.   if (keycache_debug_log)
  2436.     fclose(keycache_debug_log);
  2437. }
  2438. #endif /* defined(KEYCACHE_DEBUG_LOG) */
  2439. #endif /* defined(KEYCACHE_DEBUG) */