mi_panic.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. #include "fulltext.h"
  17. /* if flag == HA_PANIC_CLOSE then all misam files are closed */
  18. /* if flag == HA_PANIC_WRITE then all misam files are unlocked and
  19.    all changed data in single user misam is written to file */
  20. /* if flag == HA_PANIC_READ then all misam files that was locked when
  21.    mi_panic(HA_PANIC_WRITE) was done is locked. A mi_readinfo() is
  22.    done for all single user files to get changes in database */
  23. int mi_panic(enum ha_panic_function flag)
  24. {
  25.   int error=0;
  26.   LIST *list_element,*next_open;
  27.   MI_INFO *info;
  28.   DBUG_ENTER("mi_panic");
  29.   pthread_mutex_lock(&THR_LOCK_myisam);
  30.   for (list_element=myisam_open_list ; list_element ; list_element=next_open)
  31.   {
  32.     next_open=list_element->next; /* Save if close */
  33.     info=(MI_INFO*) list_element->data;
  34.     switch (flag) {
  35.     case HA_PANIC_CLOSE:
  36.       pthread_mutex_unlock(&THR_LOCK_myisam); /* Not exactly right... */
  37.       if (mi_close(info))
  38. error=my_errno;
  39.       pthread_mutex_lock(&THR_LOCK_myisam);
  40.       break;
  41.     case HA_PANIC_WRITE: /* Do this to free databases */
  42. #ifdef CANT_OPEN_FILES_TWICE
  43.       if (info->s->options & HA_OPTION_READ_ONLY_DATA)
  44. break;
  45. #endif
  46.       if (flush_key_blocks(info->s->kfile,FLUSH_RELEASE))
  47. error=my_errno;
  48.       if (info->opt_flag & WRITE_CACHE_USED)
  49. if (flush_io_cache(&info->rec_cache))
  50.   error=my_errno;
  51.       if (info->opt_flag & READ_CACHE_USED)
  52.       {
  53. if (flush_io_cache(&info->rec_cache))
  54.   error=my_errno;
  55. reinit_io_cache(&info->rec_cache,READ_CACHE,0,
  56.        (pbool) (info->lock_type != F_UNLCK),1);
  57.       }
  58.       if (info->lock_type != F_UNLCK && ! info->was_locked)
  59.       {
  60. info->was_locked=info->lock_type;
  61. if (mi_lock_database(info,F_UNLCK))
  62.   error=my_errno;
  63.       }
  64. #ifdef CANT_OPEN_FILES_TWICE
  65.       if (info->s->kfile >= 0 && my_close(info->s->kfile,MYF(0)))
  66. error = my_errno;
  67.       if (info->dfile >= 0 && my_close(info->dfile,MYF(0)))
  68. error = my_errno;
  69.       info->s->kfile=info->dfile= -1; /* Files aren't open anymore */
  70.       break;
  71. #endif
  72.     case HA_PANIC_READ: /* Restore to before WRITE */
  73. #ifdef CANT_OPEN_FILES_TWICE
  74.       { /* Open closed files */
  75. char name_buff[FN_REFLEN];
  76. if (info->s->kfile < 0)
  77.   if ((info->s->kfile= my_open(fn_format(name_buff,info->filename,"",
  78.       N_NAME_IEXT,4),info->mode,
  79.     MYF(MY_WME))) < 0)
  80.     error = my_errno;
  81. if (info->dfile < 0)
  82. {
  83.   if ((info->dfile= my_open(fn_format(name_buff,info->filename,"",
  84.       N_NAME_DEXT,4),info->mode,
  85.     MYF(MY_WME))) < 0)
  86.     error = my_errno;
  87.   info->rec_cache.file=info->dfile;
  88. }
  89.       }
  90. #endif
  91.       if (info->was_locked)
  92.       {
  93. if (mi_lock_database(info, info->was_locked))
  94.   error=my_errno;
  95. info->was_locked=0;
  96.       }
  97.       break;
  98.     }
  99.   }
  100.   if (flag == HA_PANIC_CLOSE)
  101.   {
  102.     VOID(mi_log(0)); /* Close log if neaded */
  103.     ft_free_stopwords();
  104.   }
  105.   pthread_mutex_unlock(&THR_LOCK_myisam);
  106.   if (!error)
  107.     DBUG_RETURN(0);
  108.   DBUG_RETURN(my_errno=error);
  109. } /* mi_panic */