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_pread.c < prev    next >
C/C++ Source or Header  |  2000-10-11  |  5KB  |  147 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. #ifdef HAVE_PREAD
  22. #include <unistd.h>
  23. #endif
  24.  
  25.     /* Read a chunk of bytes from a file  */
  26.  
  27. uint my_pread(File Filedes, byte *Buffer, uint Count, my_off_t offset,
  28.           myf MyFlags)
  29. {
  30.   uint readbytes;
  31.   int error;
  32.   DBUG_ENTER("my_pread");
  33.   DBUG_PRINT("my",("Fd: %d  Seek: %lu  Buffer: %lx  Count: %u  MyFlags: %d",
  34.            Filedes, (ulong) offset, Buffer, Count, MyFlags));
  35.  
  36.   for (;;)
  37.   {
  38. #ifndef __WIN__
  39.     errno=0;                    /* Linux doesn't reset this */
  40. #endif
  41. #ifndef HAVE_PREAD
  42.     pthread_mutex_lock(&my_file_info[Filedes].mutex);
  43.     readbytes= (uint) -1;
  44.     error= (lseek(Filedes, offset, MY_SEEK_SET) == -1L ||
  45.         (readbytes = (uint) read(Filedes, Buffer, Count)) != Count);
  46.     pthread_mutex_unlock(&my_file_info[Filedes].mutex);
  47. #else
  48.     error=((readbytes = (uint) pread(Filedes, Buffer, Count, offset)) != Count);
  49. #endif
  50.     if (error)
  51.     {
  52.       my_errno=errno;
  53.       DBUG_PRINT("warning",("Read only %ld bytes off %ld from %d, errno: %d",
  54.                 readbytes,Count,Filedes,my_errno));
  55. #ifdef THREAD
  56.       if (readbytes == 0 && errno == EINTR)
  57.     continue;                /* Interrupted */
  58. #endif
  59.       if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))
  60.       {
  61.     if ((int) readbytes == -1)
  62.       my_error(EE_READ, MYF(ME_BELL+ME_WAITTANG),
  63.            my_filename(Filedes),my_errno);
  64.     else if (MyFlags & (MY_NABP | MY_FNABP))
  65.       my_error(EE_EOFERR, MYF(ME_BELL+ME_WAITTANG),
  66.            my_filename(Filedes),my_errno);
  67.       }
  68.       if ((int) readbytes == -1 || (MyFlags & (MY_FNABP | MY_NABP)))
  69.     DBUG_RETURN(MY_FILE_ERROR);    /* Return with error */
  70.     }
  71.     if (MyFlags & (MY_NABP | MY_FNABP))
  72.       DBUG_RETURN(0);            /* Ok vid l{sning */
  73.     DBUG_RETURN(readbytes); /* purecov: inspected */
  74.   }
  75. } /* my_pread */
  76.  
  77.  
  78.     /* Write a chunk of bytes to a file */
  79.  
  80. uint my_pwrite(int Filedes, const byte *Buffer, uint Count, my_off_t offset,
  81.            myf MyFlags)
  82. {
  83.   uint writenbytes,errors;
  84.   ulong written;
  85.   DBUG_ENTER("my_pwrite");
  86.   DBUG_PRINT("my",("Fd: %d  Seek: %lu  Buffer: %lx  Count: %d  MyFlags: %d",
  87.            Filedes, (ulong) offset,Buffer, Count, MyFlags));
  88.   errors=0; written=0L;
  89.  
  90.   for (;;)
  91.   {
  92. #ifndef HAVE_PREAD
  93.     int error;
  94.     writenbytes= (uint) -1;
  95.     pthread_mutex_lock(&my_file_info[Filedes].mutex);
  96.     error=(lseek(Filedes, offset, MY_SEEK_SET) != -1L &&
  97.        (writenbytes = (uint) write(Filedes, Buffer, Count)) == Count);
  98.     pthread_mutex_unlock(&my_file_info[Filedes].mutex);
  99.     if (error)
  100.       break;
  101. #else
  102.     if ((writenbytes = (uint) pwrite(Filedes, Buffer, Count,offset)) == Count)
  103.       break;
  104. #endif
  105.     if ((int) writenbytes != -1)
  106.     {                    /* Safegueard */
  107.       written+=writenbytes;
  108.       Buffer+=writenbytes;
  109.       Count-=writenbytes;
  110.       offset+=writenbytes;
  111.     }
  112.     my_errno=errno;
  113.     DBUG_PRINT("error",("Write only %d bytes",writenbytes));
  114. #ifndef NO_BACKGROUND
  115. #ifdef THREAD
  116.     if (my_thread_var->abort)
  117.       MyFlags&= ~ MY_WAIT_IF_FULL;        /* End if aborted by user */
  118. #endif
  119.     if (my_errno == ENOSPC && (MyFlags & MY_WAIT_IF_FULL))
  120.     {
  121.       if (!(errors++ % MY_WAIT_GIVE_USER_A_MESSAGE))
  122.     my_error(EE_DISK_FULL,MYF(ME_BELL | ME_NOREFRESH),
  123.          my_filename(Filedes));
  124.       VOID(sleep(MY_WAIT_FOR_USER_TO_FIX_PANIC));
  125.       continue;
  126.     }
  127.     if ((writenbytes == 0 && my_errno == EINTR) ||
  128.     (writenbytes > 0 && (uint) writenbytes != (uint) -1))
  129.       continue;                    /* Retry */
  130. #endif
  131.     if (MyFlags & (MY_NABP | MY_FNABP))
  132.     {
  133.       if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))
  134.       {
  135.     my_error(EE_WRITE, MYF(ME_BELL+ME_WAITTANG),
  136.          my_filename(Filedes),my_errno);
  137.       }
  138.       DBUG_RETURN(MY_FILE_ERROR);        /* Error on read */
  139.     }
  140.     else
  141.       break;                    /* Return bytes written */
  142.   }
  143.   if (MyFlags & (MY_NABP | MY_FNABP))
  144.     DBUG_RETURN(0);            /* Want only errors */
  145.   DBUG_RETURN(writenbytes+written); /* purecov: inspected */
  146. } /* my_write */
  147.