my_read.c 2.74 KB
Newer Older
unknown's avatar
unknown committed
1 2 3 4 5 6 7 8
/* Copyright (C) 2000 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
unknown's avatar
unknown committed
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
unknown's avatar
unknown committed
10 11 12 13 14 15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
unknown's avatar
unknown committed
16 17 18 19 20 21

#include "mysys_priv.h"
#include "mysys_err.h"
#include <errno.h>


22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
  Read a chunk of bytes from a file with retry's if needed

  The parameters are:
    File descriptor
    Buffer to hold at least Count bytes
    Bytes to read
    Flags on what to do on error

    Return:
      -1 on error
      0  if flag has bits MY_NABP or MY_FNABP set
      N  number of bytes read.
*/
unknown's avatar
unknown committed
36 37 38

uint my_read(File Filedes, byte *Buffer, uint Count, myf MyFlags)
{
39
  uint readbytes, save_count;
unknown's avatar
unknown committed
40
  DBUG_ENTER("my_read");
41
  DBUG_PRINT("my",("Fd: %d  Buffer: 0x%lx  Count: %u  MyFlags: %d",
42 43
                   Filedes, Buffer, Count, MyFlags));
  save_count= Count;
unknown's avatar
unknown committed
44 45 46

  for (;;)
  {
47 48
    errno= 0;					/* Linux doesn't reset this */
    if ((readbytes= (uint) read(Filedes, Buffer, Count)) != Count)
unknown's avatar
unknown committed
49
    {
50
      my_errno= errno ? errno : -1;
unknown's avatar
unknown committed
51
      DBUG_PRINT("warning",("Read only %ld bytes off %ld from %d, errno: %d",
52
                            readbytes, Count, Filedes, my_errno));
unknown's avatar
unknown committed
53
#ifdef THREAD
54 55 56 57 58
      if ((int) readbytes <= 0 && errno == EINTR)
      {
        DBUG_PRINT("debug", ("my_read() was interrupted and returned %d", (int) readbytes));
        continue;				/* Interrupted */
      }
unknown's avatar
unknown committed
59 60 61
#endif
      if (MyFlags & (MY_WME | MY_FAE | MY_FNABP))
      {
62 63 64 65 66 67
        if ((int) readbytes == -1)
          my_error(EE_READ, MYF(ME_BELL+ME_WAITTANG),
                   my_filename(Filedes),my_errno);
        else if (MyFlags & (MY_NABP | MY_FNABP))
          my_error(EE_EOFERR, MYF(ME_BELL+ME_WAITTANG),
                   my_filename(Filedes),my_errno);
unknown's avatar
unknown committed
68
      }
unknown's avatar
unknown committed
69
      if ((int) readbytes == -1 ||
70 71
          ((MyFlags & (MY_FNABP | MY_NABP)) && !(MyFlags & MY_FULL_IO)))
        DBUG_RETURN(MY_FILE_ERROR);	/* Return with error */
unknown's avatar
unknown committed
72 73
      if (readbytes > 0 && (MyFlags & MY_FULL_IO))
      {
74 75 76
        Buffer+= readbytes;
        Count-= readbytes;
        continue;
unknown's avatar
unknown committed
77
      }
unknown's avatar
unknown committed
78 79 80
    }

    if (MyFlags & (MY_NABP | MY_FNABP))
81
      readbytes= 0;			/* Ok on read */
unknown's avatar
unknown committed
82
    else if (MyFlags & MY_FULL_IO)
83
      readbytes= save_count;
unknown's avatar
unknown committed
84 85 86 87
    break;
  }
  DBUG_RETURN(readbytes);
} /* my_read */