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 "isamdef.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.    nisam_panic(HA_PANIC_WRITE) was done is locked. A ni_readinfo() is
  19.    done for all single user files to get changes in database */
  20. int nisam_panic(enum ha_panic_function flag)
  21. {
  22.   int error=0;
  23.   LIST *list_element,*next_open;
  24.   N_INFO *info;
  25.   DBUG_ENTER("nisam_panic");
  26.   pthread_mutex_lock(&THR_LOCK_isam);
  27.   for (list_element=nisam_open_list ; list_element ; list_element=next_open)
  28.   {
  29.     next_open=list_element->next; /* Save if close */
  30.     info=(N_INFO*) list_element->data;
  31.     switch (flag) {
  32.     case HA_PANIC_CLOSE:
  33.       pthread_mutex_unlock(&THR_LOCK_isam); /* Not exactly right... */
  34.       if (nisam_close(info))
  35. error=my_errno;
  36.       pthread_mutex_lock(&THR_LOCK_isam);
  37.       break;
  38.     case HA_PANIC_WRITE: /* Do this to free databases */
  39. #ifdef CANT_OPEN_FILES_TWICE
  40.       if (info->s->base.options & HA_OPTION_READ_ONLY_DATA)
  41. break;
  42. #endif
  43.       if (flush_key_blocks(dflt_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. #ifndef NO_LOCKING
  56.       if (info->lock_type != F_UNLCK && ! info->was_locked)
  57.       {
  58. info->was_locked=info->lock_type;
  59. if (nisam_lock_database(info,F_UNLCK))
  60.   error=my_errno;
  61.       }
  62. #else
  63.       {
  64. int save_status=info->s->w_locks; /* Only w_locks! */
  65. info->s->w_locks=0;
  66. if (_nisam_writeinfo(info, test(info->update & HA_STATE_CHANGED)))
  67.   error=my_errno;
  68. info->s->w_locks=save_status;
  69. info->update&= ~HA_STATE_CHANGED; /* Not changed */
  70.       }
  71. #endif /* NO_LOCKING */
  72. #ifdef CANT_OPEN_FILES_TWICE
  73.       if (info->s->kfile >= 0 && my_close(info->s->kfile,MYF(0)))
  74. error = my_errno;
  75.       if (info->dfile >= 0 && my_close(info->dfile,MYF(0)))
  76. error = my_errno;
  77.       info->s->kfile=info->dfile= -1; /* Files aren't open anymore */
  78.       break;
  79. #endif
  80.     case HA_PANIC_READ: /* Restore to before WRITE */
  81. #ifdef CANT_OPEN_FILES_TWICE
  82.       { /* Open closed files */
  83. char name_buff[FN_REFLEN];
  84. if (info->s->kfile < 0)
  85.   if ((info->s->kfile= my_open(fn_format(name_buff,info->filename,"",
  86.       N_NAME_IEXT,4),info->mode,
  87.     MYF(MY_WME))) < 0)
  88.     error = my_errno;
  89. if (info->dfile < 0)
  90. {
  91.   if ((info->dfile= my_open(fn_format(name_buff,info->filename,"",
  92.       N_NAME_DEXT,4),info->mode,
  93.     MYF(MY_WME))) < 0)
  94.     error = my_errno;
  95.   info->rec_cache.file=info->dfile;
  96. }
  97.       }
  98. #endif
  99. #ifndef NO_LOCKING
  100.       if (info->was_locked)
  101.       {
  102. if (nisam_lock_database(info, info->was_locked))
  103.   error=my_errno;
  104. info->was_locked=0;
  105.       }
  106. #else
  107.       {
  108. int lock_type,w_locks;
  109. lock_type=info->lock_type ; w_locks=info->s->w_locks;
  110. info->lock_type=0; info->s->w_locks=0;
  111. if (_nisam_readinfo(info,0,1)) /* Read changed data */
  112.   error=my_errno;
  113. info->lock_type=lock_type; info->s->w_locks=w_locks;
  114.       }
  115.       /* Don't use buffer when doing next */
  116.       info->update|=HA_STATE_WRITTEN;
  117. #endif /* NO_LOCKING */
  118.       break;
  119.     }
  120.   }
  121.   if (flag == HA_PANIC_CLOSE)
  122.     VOID(nisam_log(0)); /* Close log if neaded */
  123.   pthread_mutex_unlock(&THR_LOCK_isam);
  124.   if (!error) DBUG_RETURN(0);
  125.   my_errno=error;
  126.   DBUG_RETURN(-1);
  127. } /* nisam_panic */