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

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. #ifdef __EMX__
  17. #include "../mysys/my_lock.c"
  18. #else
  19. #undef MAP_TO_USE_RAID /* Avoid RAID mappings */
  20. #include <global.h>
  21. #include <my_sys.h>
  22. #include <mysys_err.h>
  23. #include <my_pthread.h>
  24. #include <thr_alarm.h>
  25. #include <errno.h>
  26. #ifdef HAVE_FCNTL
  27. static struct flock lock; /* Must be static for sun-sparc */
  28. #endif
  29. /* Lock a part of a file */
  30. int my_lock(File fd,int locktype,my_off_t start,my_off_t length,myf MyFlags)
  31. {
  32.   thr_alarm_t alarmed;
  33.   ALARM alarm_buff;
  34.   uint wait_for_alarm;
  35.   DBUG_ENTER("my_lock");
  36.   DBUG_PRINT("my",("Fd: %d  Op: %d  start: %ld  Length: %ld  MyFlags: %d",
  37.    fd,locktype,(ulong) start,(ulong) length,MyFlags));
  38.   if (my_disable_locking)
  39.     DBUG_RETURN(0); /* purecov: inspected */
  40.   lock.l_type=(short) locktype;
  41.   lock.l_whence=0L;
  42.   lock.l_start=(long) start;
  43.   lock.l_len=(long) length;
  44.   wait_for_alarm=(MyFlags & MY_DONT_WAIT ? MY_HOW_OFTEN_TO_ALARM :
  45.   (uint) 12*60*60);
  46.   if (fcntl(fd,F_SETLK,&lock) != -1) /* Check if we can lock */
  47.     DBUG_RETURN(0); /* Ok, file locked */
  48.   DBUG_PRINT("info",("Was locked, trying with alarm"));
  49.   if (!thr_alarm(&alarmed,wait_for_alarm,&alarm_buff))
  50.   {
  51.     int value;
  52.     while ((value=fcntl(fd,F_SETLKW,&lock)) && !thr_got_alarm(&alarmed) &&
  53.    errno == EINTR) ;
  54.     thr_end_alarm(&alarmed);
  55.     if (value != -1)
  56.       DBUG_RETURN(0);
  57.   }
  58.   else
  59.   {
  60.     errno=EINTR;
  61.   }
  62.   if (errno == EINTR || errno == EACCES)
  63.     my_errno=EAGAIN; /* Easier to check for this */
  64.   else
  65.     my_errno=errno;
  66.   if (MyFlags & MY_WME)
  67.   {
  68.     if (locktype == F_UNLCK)
  69.       my_error(EE_CANTUNLOCK,MYF(ME_BELL+ME_WAITTANG),errno);
  70.     else
  71.       my_error(EE_CANTLOCK,MYF(ME_BELL+ME_WAITTANG),errno);
  72.   }
  73.   DBUG_PRINT("error",("errno: %d",errno));
  74.   DBUG_RETURN(-1);
  75. }
  76. #endif