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

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. /*
  17.   locking of isam-tables.
  18.   reads info from a isam-table. Must be first request before doing any furter
  19.   calls to any isamfunktion.  Is used to allow many process use the same
  20.   isamdatabase.
  21.   */
  22. #include "myisamdef.h"
  23. #ifdef __WIN__
  24. #include <errno.h>
  25. #endif
  26. /* lock table by F_UNLCK, F_RDLCK or F_WRLCK */
  27. int mi_lock_database(MI_INFO *info, int lock_type)
  28. {
  29.   int error;
  30.   uint count;
  31.   MYISAM_SHARE *share=info->s;
  32.   uint flag;
  33.   DBUG_ENTER("mi_lock_database");
  34.   if (share->options & HA_OPTION_READ_ONLY_DATA ||
  35.       info->lock_type == lock_type)
  36.     DBUG_RETURN(0);
  37.   flag=error=0;
  38.   pthread_mutex_lock(&share->intern_lock);
  39.   if (share->kfile >= 0) /* May only be false on windows */
  40.   {
  41.     switch (lock_type)
  42.     {
  43.     case F_UNLCK:
  44.       if (info->lock_type == F_RDLCK)
  45. count= --share->r_locks;
  46.       else
  47. count= --share->w_locks;
  48.       if (info->lock_type == F_WRLCK && !share->w_locks &&
  49.   !share->delay_key_write && flush_key_blocks(share->kfile,FLUSH_KEEP))
  50.       {
  51. error=my_errno;
  52. mi_mark_crashed(info); /* Mark that table must be checked */
  53.       }
  54.       if (info->opt_flag & (READ_CACHE_USED | WRITE_CACHE_USED))
  55.       {
  56. if (end_io_cache(&info->rec_cache))
  57. {
  58.   error=my_errno;
  59.   mi_mark_crashed(info);
  60. }
  61.       }
  62.       if (!count)
  63.       {
  64. if (share->changed && !share->w_locks)
  65. {
  66.   share->state.process= share->last_process=share->this_process;
  67.   share->state.unique=   info->last_unique=  info->this_unique;
  68.   share->state.update_count= info->last_loop= ++info->this_loop;
  69.   if (mi_state_info_write(share->kfile, &share->state, 1))
  70.     error=my_errno;
  71.   share->changed=0;
  72.   if (myisam_flush)
  73.   {
  74. #if defined(__WIN__)
  75.     if (_commit(share->kfile))
  76.       error=errno;
  77.     if (_commit(info->dfile))
  78.       error=errno;
  79. #elif defined(HAVE_FDATASYNC)
  80.     if (fdatasync(share->kfile))
  81.       error=errno;
  82.     if (fdatasync(share->dfile))
  83.       error=errno;
  84. #elif defined(HAVE_FSYNC)
  85.     if (fsync(share->kfile))
  86.       error=errno;
  87.     if (fsync(share->dfile))
  88.       error=errno;
  89. #endif
  90.   }
  91.   else
  92.     share->not_flushed=1;
  93.   if (error)
  94.     mi_mark_crashed(info);
  95. }
  96. if (share->r_locks)
  97. { /* Only read locks left */
  98.   flag=1;
  99.   if (my_lock(share->kfile,F_RDLCK,0L,F_TO_EOF,
  100.       MYF(MY_WME | MY_SEEK_NOT_DONE)) && !error)
  101.     error=my_errno;
  102. }
  103. else if (!share->w_locks)
  104. { /* No more locks */
  105.   flag=1;
  106.   if (my_lock(share->kfile,F_UNLCK,0L,F_TO_EOF,
  107.       MYF(MY_WME | MY_SEEK_NOT_DONE)) && !error)
  108.     error=my_errno;
  109. }
  110.       }
  111.       info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
  112.       info->lock_type= F_UNLCK;
  113.       break;
  114.     case F_RDLCK:
  115.       if (info->lock_type == F_WRLCK)
  116.       { /* Change RW to READONLY */
  117. if (share->w_locks == 1)
  118. {
  119.   flag=1;
  120.   if (my_lock(share->kfile,lock_type,0L,F_TO_EOF,
  121.       MYF(MY_SEEK_NOT_DONE)))
  122.   {
  123.     error=my_errno;
  124.     break;
  125.   }
  126. }
  127. share->w_locks--;
  128. share->r_locks++;
  129. info->lock_type=lock_type;
  130. break;
  131.       }
  132.       if (!share->r_locks && !share->w_locks)
  133.       {
  134. flag=1;
  135. if (my_lock(share->kfile,lock_type,0L,F_TO_EOF,
  136.     info->lock_wait | MY_SEEK_NOT_DONE))
  137. {
  138.   error=my_errno;
  139.   break;
  140. }
  141. if (mi_state_info_read_dsk(share->kfile, &share->state, 1))
  142. {
  143.   error=my_errno;
  144.   VOID(my_lock(share->kfile,F_UNLCK,0L,F_TO_EOF,MYF(MY_SEEK_NOT_DONE)));
  145.   my_errno=error;
  146.   break;
  147. }
  148.       }
  149.       VOID(_mi_test_if_changed(info));
  150.       share->r_locks++;
  151.       info->lock_type=lock_type;
  152.       break;
  153.     case F_WRLCK:
  154.       if (info->lock_type == F_RDLCK)
  155.       { /* Change READONLY to RW */
  156. if (share->r_locks == 1)
  157. {
  158.   flag=1;
  159.   if (my_lock(share->kfile,lock_type,0L,F_TO_EOF,
  160.       MYF(info->lock_wait | MY_SEEK_NOT_DONE)))
  161.   {
  162.     error=my_errno;
  163.     break;
  164.   }
  165.   share->r_locks--;
  166.   share->w_locks++;
  167.   info->lock_type=lock_type;
  168.   break;
  169. }
  170.       }
  171.       if (!(share->options & HA_OPTION_READ_ONLY_DATA))
  172.       {
  173. if (!share->w_locks)
  174. {
  175.   flag=1;
  176.   if (my_lock(share->kfile,lock_type,0L,F_TO_EOF,
  177.       info->lock_wait | MY_SEEK_NOT_DONE))
  178.   {
  179.     error=my_errno;
  180.     break;
  181.   }
  182.   if (!share->r_locks)
  183.   {
  184.     if (mi_state_info_read_dsk(share->kfile, &share->state, 1))
  185.     {
  186.       error=my_errno;
  187.       VOID(my_lock(share->kfile,F_UNLCK,0L,F_TO_EOF,
  188.    info->lock_wait | MY_SEEK_NOT_DONE));
  189.       my_errno=error;
  190.       break;
  191.     }
  192.   }
  193. }
  194.       }
  195.       VOID(_mi_test_if_changed(info));
  196.       info->lock_type=lock_type;
  197.       share->w_locks++;
  198.       break;
  199.     default:
  200.       break; /* Impossible */
  201.     }
  202.   }
  203.   pthread_mutex_unlock(&share->intern_lock);
  204. #if defined(FULL_LOG) || defined(_lint)
  205.   lock_type|=(int) (flag << 8); /* Set bit to set if real lock */
  206.   myisam_log_command(MI_LOG_LOCK,info,(byte*) &lock_type,sizeof(lock_type),
  207.      error);
  208. #endif
  209.   DBUG_RETURN(error);
  210. } /* mi_lock_database */
  211. /****************************************************************************
  212. ** The following functions are called by thr_lock() in threaded applications
  213. ****************************************************************************/
  214. void mi_get_status(void* param)
  215. {
  216.   MI_INFO *info=(MI_INFO*) param;
  217.   DBUG_ENTER("mi_get_status");
  218.   DBUG_PRINT("info",("key_file: %ld  data_file: %ld",
  219.      (long) info->s->state.state.key_file_length,
  220.      (long) info->s->state.state.data_file_length));
  221. #ifndef DBUG_OFF
  222.   if (info->state->key_file_length > info->s->state.state.key_file_length ||
  223.       info->state->data_file_length > info->s->state.state.data_file_length)
  224.     DBUG_PRINT("warning",("old info:  key_file: %ld  data_file: %ld",
  225.   (long) info->state->key_file_length,
  226.   (long) info->state->data_file_length));
  227. #endif
  228.   info->save_state=info->s->state.state;
  229.   info->state= &info->save_state;
  230.   DBUG_VOID_RETURN;
  231. }
  232. void mi_update_status(void* param)
  233. {
  234.   MI_INFO *info=(MI_INFO*) param;
  235.   /*
  236.     Because someone may have closed the table we point at, we only
  237.     update the state if its our own state.  This isn't a problem as
  238.     we are always pointing at our own lock or at a read lock.
  239.     (This is enforced by thr_multi_lock.c)
  240.   */
  241.   if (info->state == &info->save_state)
  242.   {
  243. #ifndef DBUG_OFF
  244.     DBUG_PRINT("info",("updating status:  key_file: %ld  data_file: %ld",
  245.        (long) info->state->key_file_length,
  246.        (long) info->state->data_file_length));
  247.     if (info->state->key_file_length < info->s->state.state.key_file_length ||
  248. info->state->data_file_length < info->s->state.state.data_file_length)
  249.       DBUG_PRINT("warning",("old info:  key_file: %ld  data_file: %ld",
  250.     (long) info->s->state.state.key_file_length,
  251.     (long) info->s->state.state.data_file_length));
  252. #endif
  253.     info->s->state.state= *info->state;
  254.     info->state= &info->s->state.state;
  255.   }
  256.   /*
  257.     We have to flush the write cache here as other threads may start
  258.     reading the table before mi_lock_database() is called
  259.   */
  260.   if (info->opt_flag & WRITE_CACHE_USED)
  261.   {
  262.     if (end_io_cache(&info->rec_cache))
  263.     {
  264.       mi_mark_crashed(info);
  265.     }
  266.     info->opt_flag&= ~WRITE_CACHE_USED;
  267.   }
  268. }
  269. void mi_copy_status(void* to,void *from)
  270. {
  271.   ((MI_INFO*) to)->state= &((MI_INFO*) from)->save_state;
  272. }
  273. my_bool mi_check_status(void* param)
  274. {
  275.   MI_INFO *info=(MI_INFO*) param;
  276.   return (my_bool) (info->s->state.dellink != HA_OFFSET_ERROR);
  277. }
  278. /****************************************************************************
  279.  ** functions to read / write the state
  280. ****************************************************************************/
  281. int _mi_readinfo(register MI_INFO *info, int lock_type, int check_keybuffer)
  282. {
  283.   MYISAM_SHARE *share;
  284.   DBUG_ENTER("_mi_readinfo");
  285.   share=info->s;
  286.   if (info->lock_type == F_UNLCK)
  287.   {
  288.     if (!share->r_locks && !share->w_locks)
  289.     {
  290.       if ((info->tmp_lock_type=lock_type) != F_RDLCK)
  291. if (my_lock(share->kfile,lock_type,0L,F_TO_EOF,
  292.     info->lock_wait | MY_SEEK_NOT_DONE))
  293.   DBUG_RETURN(1);
  294.       if (mi_state_info_read_dsk(share->kfile, &share->state, 1))
  295.       {
  296. int error=my_errno ? my_errno : -1;
  297. VOID(my_lock(share->kfile,F_UNLCK,0L,F_TO_EOF,
  298.      MYF(MY_SEEK_NOT_DONE)));
  299. my_errno=error;
  300. DBUG_RETURN(1);
  301.       }
  302.     }
  303.     if (check_keybuffer)
  304.       VOID(_mi_test_if_changed(info));
  305.   }
  306.   else if (lock_type == F_WRLCK && info->lock_type == F_RDLCK)
  307.   {
  308.     my_errno=EACCES; /* Not allowed to change */
  309.     DBUG_RETURN(-1); /* when have read_lock() */
  310.   }
  311.   DBUG_RETURN(0);
  312. } /* _mi_readinfo */
  313. /* Every isam-function that uppdates the isam-database must! end */
  314. /* with this request */
  315. /* ARGSUSED */
  316. int _mi_writeinfo(register MI_INFO *info, uint operation)
  317. {
  318.   int error,olderror;
  319.   MYISAM_SHARE *share;
  320.   DBUG_ENTER("_mi_writeinfo");
  321.   error=0;
  322.   share=info->s;
  323.   if (share->r_locks == 0 && share->w_locks == 0)
  324.   {
  325.     olderror=my_errno; /* Remember last error */
  326.     if (operation)
  327.     { /* Two threads can't be here */
  328.       share->state.process= share->last_process=   share->this_process;
  329.       share->state.unique=  info->last_unique=    info->this_unique;
  330.       share->state.update_count= info->last_loop= ++info->this_loop;
  331.       if ((error=mi_state_info_write(share->kfile, &share->state, 1)))
  332. olderror=my_errno;
  333. #ifdef __WIN__
  334.       if (myisam_flush)
  335.       {
  336. _commit(share->kfile);
  337. _commit(info->dfile);
  338.       }
  339. #endif
  340.     }
  341.     if (!(operation & WRITEINFO_NO_UNLOCK) &&
  342. my_lock(share->kfile,F_UNLCK,0L,F_TO_EOF,
  343. MYF(MY_WME | MY_SEEK_NOT_DONE)) && !error)
  344.       DBUG_RETURN(1);
  345.     my_errno=olderror;
  346.   }
  347.   else if (operation)
  348.   {
  349.     share->changed= 1; /* Mark keyfile changed */
  350.   }
  351.     DBUG_RETURN(error);
  352. } /* _mi_writeinfo */
  353. /* Test if someone has changed the database */
  354. /* (Should be called after readinfo) */
  355. int _mi_test_if_changed(register MI_INFO *info)
  356. {
  357.   MYISAM_SHARE *share=info->s;
  358.   if (share->state.process != share->last_process ||
  359.       share->state.unique  != info->last_unique ||
  360.       share->state.update_count != info->last_loop)
  361.   { /* Keyfile has changed */
  362.     DBUG_PRINT("info",("index file changed"));
  363.     if (share->state.process != share->this_process)
  364.       VOID(flush_key_blocks(share->kfile,FLUSH_RELEASE));
  365.     share->last_process=share->state.process;
  366.     info->last_unique= share->state.unique;
  367.     info->last_loop= share->state.update_count;
  368.     info->update|= HA_STATE_WRITTEN; /* Must use file on next */
  369.     info->data_changed= 1; /* For mi_is_changed */
  370.     return 1;
  371.   }
  372.   return (!(info->update & HA_STATE_AKTIV) ||
  373.   (info->update & (HA_STATE_WRITTEN | HA_STATE_DELETED |
  374.    HA_STATE_KEY_CHANGED)));
  375. } /* _mi_test_if_changed */
  376. /* Put a mark in the .MYI file that someone is updating the table */
  377. int _mi_mark_file_changed(MI_INFO *info)
  378. {
  379.   char buff[3];
  380.   register MYISAM_SHARE *share=info->s;
  381.   if (!(share->state.changed & STATE_CHANGED) || ! share->global_changed)
  382.   {
  383.     share->state.changed|=(STATE_CHANGED | STATE_NOT_ANALYZED |
  384.    STATE_NOT_OPTIMIZED_KEYS);
  385.     if (!share->global_changed)
  386.     {
  387.       share->global_changed=1;
  388.       share->state.open_count++;
  389.     }
  390.     mi_int2store(buff,share->state.open_count);
  391.     buff[2]=1; /* Mark that it's changed */
  392.     return (my_pwrite(share->kfile,buff,sizeof(buff),
  393.       sizeof(share->state.header),
  394.       MYF(MY_NABP)));
  395.   }
  396.   return 0;
  397. }
  398. /*
  399.   This is only called by close or by extra(HA_FLUSH) if the OS has the pwrite()
  400.   call.  In these context the following code should be safe!
  401.  */
  402. int _mi_decrement_open_count(MI_INFO *info)
  403. {
  404.   char buff[2];
  405.   register MYISAM_SHARE *share=info->s;
  406.   int lock_error=0,write_error=0;
  407.   if (share->global_changed)
  408.   {
  409.     uint old_lock=info->lock_type;
  410.     share->global_changed=0;
  411.     lock_error=mi_lock_database(info,F_WRLCK);
  412.     /* Its not fatal even if we couldn't get the lock ! */
  413.     if (share->state.open_count > 0)
  414.     {
  415.       share->state.open_count--;
  416.       mi_int2store(buff,share->state.open_count);
  417.       write_error=my_pwrite(share->kfile,buff,sizeof(buff),
  418.     sizeof(share->state.header),
  419.     MYF(MY_NABP));
  420.     }
  421.     if (!lock_error)
  422.       lock_error=mi_lock_database(info,old_lock);
  423.   }
  424.   return test(lock_error || write_error);
  425. }