home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / my_write.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  3KB  |  78 lines

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