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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library 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 GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. #include "mysys_priv.h"
  18. #include "mysys_err.h"
  19. #include <errno.h>
  20. /* Write a chunk of bytes to a file */
  21. uint my_write(int Filedes, const byte *Buffer, uint Count, myf MyFlags)
  22. {
  23.   uint writenbytes,errors;
  24.   ulong written;
  25.   DBUG_ENTER("my_write");
  26.   DBUG_PRINT("my",("Fd: %d  Buffer: %lx  Count: %d  MyFlags: %d",
  27.    Filedes, Buffer, Count, MyFlags));
  28.   errors=0; written=0L;
  29.   for (;;)
  30.   {
  31.     if ((writenbytes = (uint) write(Filedes, Buffer, Count)) == Count)
  32.       break;
  33.     if ((int) writenbytes != -1)
  34.     { /* Safeguard */
  35.       written+=writenbytes;
  36.       Buffer+=writenbytes;
  37.       Count-=writenbytes;
  38.     }
  39.     my_errno=errno;
  40.     DBUG_PRINT("error",("Write only %d bytes, error: %d",
  41. writenbytes,my_errno));
  42. #ifndef NO_BACKGROUND
  43. #ifdef THREAD
  44.     if (my_thread_var->abort)
  45.       MyFlags&= ~ MY_WAIT_IF_FULL; /* End if aborted by user */
  46. #endif
  47.     if (my_errno == ENOSPC && (MyFlags & MY_WAIT_IF_FULL) &&
  48. (uint) writenbytes != (uint) -1)
  49.     {
  50.       if (!(errors++ % MY_WAIT_GIVE_USER_A_MESSAGE))
  51. my_error(EE_DISK_FULL,MYF(ME_BELL | ME_NOREFRESH),
  52.  my_filename(Filedes));
  53.       VOID(sleep(MY_WAIT_FOR_USER_TO_FIX_PANIC));
  54.       continue;
  55.     }
  56.     if (!writenbytes)
  57.     {
  58.       /* We may come here on an interrupt or if the file quote is exeeded */
  59.       if (my_errno == EINTR)
  60. continue;
  61.       if (!errors++) /* Retry once */
  62.       {
  63. errno=EFBIG; /* Assume this is the error */
  64. continue;
  65.       }
  66.     }
  67.     else if ((uint) writenbytes != (uint) -1)
  68.       continue; /* Retry */
  69. #endif
  70.     if (MyFlags & (MY_NABP | MY_FNABP))
  71.     {
  72.       if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))
  73.       {
  74. my_error(EE_WRITE, MYF(ME_BELL+ME_WAITTANG),
  75.  my_filename(Filedes),my_errno);
  76.       }
  77.       DBUG_RETURN(MY_FILE_ERROR); /* Error on read */
  78.     }
  79.     else
  80.       break; /* Return bytes written */
  81.   }
  82.   if (MyFlags & (MY_NABP | MY_FNABP))
  83.     DBUG_RETURN(0); /* Want only errors */
  84.   DBUG_RETURN(writenbytes+written);
  85. } /* my_write */