my_write.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL 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 "mysys_priv.h"
  14. #include "mysys_err.h"
  15. #include <errno.h>
  16. /* Write a chunk of bytes to a file */
  17. uint my_write(int Filedes, const byte *Buffer, uint Count, myf MyFlags)
  18. {
  19.   uint writenbytes,errors;
  20.   ulong written;
  21.   DBUG_ENTER("my_write");
  22.   DBUG_PRINT("my",("Fd: %d  Buffer: 0x%lx  Count: %d  MyFlags: %d",
  23.    Filedes, Buffer, Count, MyFlags));
  24.   errors=0; written=0L;
  25.   for (;;)
  26.   {
  27.     if ((writenbytes = (uint) write(Filedes, Buffer, Count)) == Count)
  28.       break;
  29.     if ((int) writenbytes != -1)
  30.     { /* Safeguard */
  31.       written+=writenbytes;
  32.       Buffer+=writenbytes;
  33.       Count-=writenbytes;
  34.     }
  35.     my_errno=errno;
  36.     DBUG_PRINT("error",("Write only %d bytes, error: %d",
  37. writenbytes,my_errno));
  38. #ifndef NO_BACKGROUND
  39. #ifdef THREAD
  40.     if (my_thread_var->abort)
  41.       MyFlags&= ~ MY_WAIT_IF_FULL; /* End if aborted by user */
  42. #endif
  43.     if ((my_errno == ENOSPC || my_errno == EDQUOT) &&
  44.         (MyFlags & MY_WAIT_IF_FULL))
  45.     {
  46.       if (!(errors++ % MY_WAIT_GIVE_USER_A_MESSAGE))
  47. my_error(EE_DISK_FULL,MYF(ME_BELL | ME_NOREFRESH),
  48.  my_filename(Filedes),my_errno,MY_WAIT_FOR_USER_TO_FIX_PANIC);
  49.       VOID(sleep(MY_WAIT_FOR_USER_TO_FIX_PANIC));
  50.       continue;
  51.     }
  52.     if (!writenbytes)
  53.     {
  54.       /* We may come here on an interrupt or if the file quote is exeeded */
  55.       if (my_errno == EINTR)
  56. continue;
  57.       if (!errors++) /* Retry once */
  58.       {
  59. errno=EFBIG; /* Assume this is the error */
  60. continue;
  61.       }
  62.     }
  63.     else if ((uint) writenbytes != (uint) -1)
  64.       continue; /* Retry */
  65. #endif
  66.     if (MyFlags & (MY_NABP | MY_FNABP))
  67.     {
  68.       if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))
  69.       {
  70. my_error(EE_WRITE, MYF(ME_BELL+ME_WAITTANG),
  71.  my_filename(Filedes),my_errno);
  72.       }
  73.       DBUG_RETURN(MY_FILE_ERROR); /* Error on read */
  74.     }
  75.     else
  76.       break; /* Return bytes written */
  77.   }
  78.   if (MyFlags & (MY_NABP | MY_FNABP))
  79.     DBUG_RETURN(0); /* Want only errors */
  80.   DBUG_RETURN(writenbytes+written);
  81. } /* my_write */