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