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

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. /*
  17.   Read a chunk of bytes from a file with retry's if needed
  18.   The parameters are:
  19.     File descriptor
  20.     Buffer to hold at least Count bytes
  21.     Bytes to read
  22.     Flags on what to do on error
  23.     Return:
  24.       -1 on error
  25.       0  if flag has bits MY_NABP or MY_FNABP set
  26.       N  number of bytes read.
  27. */
  28. uint my_read(File Filedes, byte *Buffer, uint Count, myf MyFlags)
  29. {
  30.   uint readbytes,save_count;
  31.   DBUG_ENTER("my_read");
  32.   DBUG_PRINT("my",("Fd: %d  Buffer: 0x%lx  Count: %u  MyFlags: %d",
  33.    Filedes, Buffer, Count, MyFlags));
  34.   save_count=Count;
  35.   for (;;)
  36.   {
  37.     errno=0; /* Linux doesn't reset this */
  38.     if ((readbytes = (uint) read(Filedes, Buffer, Count)) != Count)
  39.     {
  40.       my_errno=errno ? errno : -1;
  41.       DBUG_PRINT("warning",("Read only %ld bytes off %ld from %d, errno: %d",
  42.     readbytes,Count,Filedes,my_errno));
  43. #ifdef THREAD
  44.       if (readbytes == 0 && errno == EINTR)
  45. continue; /* Interrupted */
  46. #endif
  47.       if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))
  48.       {
  49. if ((int) readbytes == -1)
  50.   my_error(EE_READ, MYF(ME_BELL+ME_WAITTANG),
  51.    my_filename(Filedes),my_errno);
  52. else if (MyFlags & (MY_NABP | MY_FNABP))
  53.   my_error(EE_EOFERR, MYF(ME_BELL+ME_WAITTANG),
  54.    my_filename(Filedes),my_errno);
  55.       }
  56.       if ((int) readbytes == -1 ||
  57.   ((MyFlags & (MY_FNABP | MY_NABP)) && !(MyFlags & MY_FULL_IO)))
  58. DBUG_RETURN(MY_FILE_ERROR); /* Return with error */
  59.       if (readbytes > 0 && (MyFlags & MY_FULL_IO))
  60.       {
  61. Buffer+=readbytes;
  62. Count-=readbytes;
  63. continue;
  64.       }
  65.     }
  66.     if (MyFlags & (MY_NABP | MY_FNABP))
  67.       readbytes=0; /* Ok on read */
  68.     else if (MyFlags & MY_FULL_IO)
  69.       readbytes=save_count;
  70.     break;
  71.   }
  72.   DBUG_RETURN(readbytes);
  73. } /* my_read */