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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* close a isam-database */
  14. /*
  15.   TODO:
  16.    We need to have a separate mutex on the closed file to allow other threads
  17.    to open other files during the time we flush the cache and close this file
  18. */
  19. #include "myisamdef.h"
  20. int mi_close(register MI_INFO *info)
  21. {
  22.   int error=0,flag;
  23.   MYISAM_SHARE *share=info->s;
  24.   DBUG_ENTER("mi_close");
  25.   DBUG_PRINT("enter",("base: %lx  reopen: %u  locks: %u",
  26.       info,(uint) share->reopen, (uint) share->tot_locks));
  27.   pthread_mutex_lock(&THR_LOCK_myisam);
  28.   if (info->lock_type == F_EXTRA_LCK)
  29.     info->lock_type=F_UNLCK; /* HA_EXTRA_NO_USER_CHANGE */
  30.   if (share->reopen == 1 && share->kfile >= 0)
  31.     _mi_decrement_open_count(info);
  32.   if (info->lock_type != F_UNLCK)
  33.   {
  34.     if (mi_lock_database(info,F_UNLCK))
  35.       error=my_errno;
  36.   }
  37.   pthread_mutex_lock(&share->intern_lock);
  38.   if (share->options & HA_OPTION_READ_ONLY_DATA)
  39.   {
  40.     share->r_locks--;
  41.     share->tot_locks--;
  42.   }
  43.   if (info->opt_flag & (READ_CACHE_USED | WRITE_CACHE_USED))
  44.   {
  45.     if (end_io_cache(&info->rec_cache))
  46.       error=my_errno;
  47.     info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
  48.   }
  49.   flag= !--share->reopen;
  50.   myisam_open_list=list_delete(myisam_open_list,&info->open_list);
  51.   pthread_mutex_unlock(&share->intern_lock);
  52.   my_free(mi_get_rec_buff_ptr(info, info->rec_buff), MYF(MY_ALLOW_ZERO_PTR));
  53.   if (flag)
  54.   {
  55.     if (share->kfile >= 0 &&
  56. flush_key_blocks(share->key_cache, share->kfile,
  57.  share->temporary ? FLUSH_IGNORE_CHANGED :
  58.  FLUSH_RELEASE))
  59.       error=my_errno;
  60.     if (share->kfile >= 0)
  61.     {
  62.       /*
  63.         If we are crashed, we can safely flush the current state as it will
  64.         not change the crashed state.
  65.         We can NOT write the state in other cases as other threads
  66.         may be using the file at this point
  67.       */
  68.       if (share->mode != O_RDONLY && mi_is_crashed(info))
  69. mi_state_info_write(share->kfile, &share->state, 1);
  70.       if (my_close(share->kfile,MYF(0)))
  71.         error = my_errno;
  72.     }
  73. #ifdef HAVE_MMAP
  74.     if (share->file_map)
  75.       _mi_unmap_file(info);
  76. #endif
  77.     if (share->decode_trees)
  78.     {
  79.       my_free((gptr) share->decode_trees,MYF(0));
  80.       my_free((gptr) share->decode_tables,MYF(0));
  81.     }
  82. #ifdef THREAD
  83.     thr_lock_delete(&share->lock);
  84.     VOID(pthread_mutex_destroy(&share->intern_lock));
  85.     {
  86.       int i,keys;
  87.       keys = share->state.header.keys;
  88.       for(i=0; i<keys; i++) {
  89. VOID(rwlock_destroy(&share->key_root_lock[i]));
  90.       }
  91.     }
  92. #endif
  93.     my_free((gptr) info->s,MYF(0));
  94.   }
  95.   pthread_mutex_unlock(&THR_LOCK_myisam);
  96.   if (info->dfile >= 0 && my_close(info->dfile,MYF(0)))
  97.     error = my_errno;
  98.   myisam_log_command(MI_LOG_CLOSE,info,NULL,0,error);
  99.   my_free((gptr) info,MYF(0));
  100.   if (error)
  101.   {
  102.     DBUG_RETURN(my_errno=error);
  103.   }
  104.   DBUG_RETURN(0);
  105. } /* mi_close */