mi_panic.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. #include "fulltext.h"
  14. /* if flag == HA_PANIC_CLOSE then all misam files are closed */
  15. /* if flag == HA_PANIC_WRITE then all misam files are unlocked and
  16.    all changed data in single user misam is written to file */
  17. /* if flag == HA_PANIC_READ then all misam files that was locked when
  18.    mi_panic(HA_PANIC_WRITE) was done is locked. A mi_readinfo() is
  19.    done for all single user files to get changes in database */
  20. int mi_panic(enum ha_panic_function flag)
  21. {
  22.   int error=0;
  23.   LIST *list_element,*next_open;
  24.   MI_INFO *info;
  25.   DBUG_ENTER("mi_panic");
  26.   pthread_mutex_lock(&THR_LOCK_myisam);
  27.   for (list_element=myisam_open_list ; list_element ; list_element=next_open)
  28.   {
  29.     next_open=list_element->next; /* Save if close */
  30.     info=(MI_INFO*) list_element->data;
  31.     switch (flag) {
  32.     case HA_PANIC_CLOSE:
  33.       pthread_mutex_unlock(&THR_LOCK_myisam); /* Not exactly right... */
  34.       if (mi_close(info))
  35. error=my_errno;
  36.       pthread_mutex_lock(&THR_LOCK_myisam);
  37.       break;
  38.     case HA_PANIC_WRITE: /* Do this to free databases */
  39. #ifdef CANT_OPEN_FILES_TWICE
  40.       if (info->s->options & HA_OPTION_READ_ONLY_DATA)
  41. break;
  42. #endif
  43.       if (flush_key_blocks(info->s->key_cache, info->s->kfile, FLUSH_RELEASE))
  44. error=my_errno;
  45.       if (info->opt_flag & WRITE_CACHE_USED)
  46. if (flush_io_cache(&info->rec_cache))
  47.   error=my_errno;
  48.       if (info->opt_flag & READ_CACHE_USED)
  49.       {
  50. if (flush_io_cache(&info->rec_cache))
  51.   error=my_errno;
  52. reinit_io_cache(&info->rec_cache,READ_CACHE,0,
  53.        (pbool) (info->lock_type != F_UNLCK),1);
  54.       }
  55.       if (info->lock_type != F_UNLCK && ! info->was_locked)
  56.       {
  57. info->was_locked=info->lock_type;
  58. if (mi_lock_database(info,F_UNLCK))
  59.   error=my_errno;
  60.       }
  61. #ifdef CANT_OPEN_FILES_TWICE
  62.       if (info->s->kfile >= 0 && my_close(info->s->kfile,MYF(0)))
  63. error = my_errno;
  64.       if (info->dfile >= 0 && my_close(info->dfile,MYF(0)))
  65. error = my_errno;
  66.       info->s->kfile=info->dfile= -1; /* Files aren't open anymore */
  67.       break;
  68. #endif
  69.     case HA_PANIC_READ: /* Restore to before WRITE */
  70. #ifdef CANT_OPEN_FILES_TWICE
  71.       { /* Open closed files */
  72. char name_buff[FN_REFLEN];
  73. if (info->s->kfile < 0)
  74.   if ((info->s->kfile= my_open(fn_format(name_buff,info->filename,"",
  75.       N_NAME_IEXT,4),info->mode,
  76.     MYF(MY_WME))) < 0)
  77.     error = my_errno;
  78. if (info->dfile < 0)
  79. {
  80.   if ((info->dfile= my_open(fn_format(name_buff,info->filename,"",
  81.       N_NAME_DEXT,4),info->mode,
  82.     MYF(MY_WME))) < 0)
  83.     error = my_errno;
  84.   info->rec_cache.file=info->dfile;
  85. }
  86.       }
  87. #endif
  88.       if (info->was_locked)
  89.       {
  90. if (mi_lock_database(info, info->was_locked))
  91.   error=my_errno;
  92. info->was_locked=0;
  93.       }
  94.       break;
  95.     }
  96.   }
  97.   if (flag == HA_PANIC_CLOSE)
  98.   {
  99.     VOID(mi_log(0)); /* Close log if neaded */
  100.     ft_free_stopwords();
  101.   }
  102.   pthread_mutex_unlock(&THR_LOCK_myisam);
  103.   if (!error)
  104.     DBUG_RETURN(0);
  105.   DBUG_RETURN(my_errno=error);
  106. } /* mi_panic */