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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 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.   Key cache assignments
  15. */
  16. #include "myisamdef.h"
  17. /*
  18.   Assign pages of the index file for a table to a key cache
  19.   SYNOPSIS
  20.     mi_assign_to_key_cache()
  21.       info          open table
  22.       key_map       map of indexes to assign to the key cache 
  23.       key_cache_ptr pointer to the key cache handle
  24.       assign_lock   Mutex to lock during assignment
  25.   PREREQUESTS
  26.     One must have a READ lock or a WRITE lock on the table when calling
  27.     the function to ensure that there is no other writers to it.
  28.     The caller must also ensure that one doesn't call this function from
  29.     two different threads with the same table.
  30.   NOTES
  31.     At present pages for all indexes must be assigned to the same key cache.
  32.     In future only pages for indexes specified in the key_map parameter
  33.     of the table will be assigned to the specified key cache.
  34.   RETURN VALUE
  35.     0  If a success
  36.     #  Error code
  37. */
  38. int mi_assign_to_key_cache(MI_INFO *info,
  39.    ulonglong key_map __attribute__((unused)),
  40.    KEY_CACHE *key_cache)
  41. {
  42.   int error= 0;
  43.   MYISAM_SHARE* share= info->s;
  44.   DBUG_ENTER("mi_assign_to_key_cache");
  45.   DBUG_PRINT("enter",("old_key_cache_handle: %lx  new_key_cache_handle: %lx",
  46.       share->key_cache, key_cache));
  47.   /*
  48.     Skip operation if we didn't change key cache. This can happen if we
  49.     call this for all open instances of the same table
  50.   */
  51.   if (share->key_cache == key_cache)
  52.     DBUG_RETURN(0);
  53.   /*
  54.     First flush all blocks for the table in the old key cache.
  55.     This is to ensure that the disk is consistent with the data pages
  56.     in memory (which may not be the case if the table uses delayed_key_write)
  57.     Note that some other read thread may still fill in the key cache with
  58.     new blocks during this call and after, but this doesn't matter as
  59.     all threads will start using the new key cache for their next call to
  60.     myisam library and we know that there will not be any changed blocks
  61.     in the old key cache.
  62.   */
  63.   if (flush_key_blocks(share->key_cache, share->kfile, FLUSH_RELEASE))
  64.   {
  65.     error= my_errno;
  66.     mi_mark_crashed(info); /* Mark that table must be checked */
  67.   }
  68.   /*
  69.     Flush the new key cache for this file.  This is needed to ensure
  70.     that there is no old blocks (with outdated data) left in the new key
  71.     cache from an earlier assign_to_keycache operation
  72.     (This can never fail as there is never any not written data in the
  73.     new key cache)
  74.   */
  75.   (void) flush_key_blocks(key_cache, share->kfile, FLUSH_RELEASE);
  76.   /*
  77.     ensure that setting the key cache and changing the multi_key_cache
  78.     is done atomicly
  79.   */
  80.   pthread_mutex_lock(&share->intern_lock);
  81.   /*
  82.     Tell all threads to use the new key cache
  83.     This should be seen at the lastes for the next call to an myisam function.
  84.   */
  85.   share->key_cache= key_cache;
  86.   /* store the key cache in the global hash structure for future opens */
  87.   if (multi_key_cache_set(share->unique_file_name, share->unique_name_length,
  88.   share->key_cache))
  89.     error= my_errno;
  90.   pthread_mutex_unlock(&share->intern_lock);
  91.   DBUG_RETURN(error);
  92. }
  93. /*
  94.   Change all MyISAM entries that uses one key cache to another key cache
  95.   SYNOPSIS
  96.     mi_change_key_cache()
  97.     old_key_cache Old key cache
  98.     new_key_cache New key cache
  99.   NOTES
  100.     This is used when we delete one key cache.
  101.     To handle the case where some other threads tries to open an MyISAM
  102.     table associated with the to-be-deleted key cache while this operation
  103.     is running, we have to call 'multi_key_cache_change()' from this
  104.     function while we have a lock on the MyISAM table list structure.
  105.     This is safe as long as it's only MyISAM that is using this specific
  106.     key cache.
  107. */
  108. void mi_change_key_cache(KEY_CACHE *old_key_cache,
  109.  KEY_CACHE *new_key_cache)
  110. {
  111.   LIST *pos;
  112.   DBUG_ENTER("mi_change_key_cache");
  113.   /*
  114.     Lock list to ensure that no one can close the table while we manipulate it
  115.   */
  116.   pthread_mutex_lock(&THR_LOCK_myisam);
  117.   for (pos=myisam_open_list ; pos ; pos=pos->next)
  118.   {
  119.     MI_INFO *info= (MI_INFO*) pos->data;
  120.     MYISAM_SHARE *share= info->s;
  121.     if (share->key_cache == old_key_cache)
  122.       mi_assign_to_key_cache(info, (ulonglong) ~0, new_key_cache);
  123.   }
  124.   /*
  125.     We have to do the following call while we have the lock on the
  126.     MyISAM list structure to ensure that another thread is not trying to
  127.     open a new table that will be associted with the old key cache
  128.   */
  129.   multi_key_cache_change(old_key_cache, new_key_cache);
  130.   pthread_mutex_unlock(&THR_LOCK_myisam);
  131. }