Orthogonal approach to read()/write() that handles EINTR and counts > 2^31
[gnulib.git] / lib / full-read.c
1 /* An interface to read() that reads all it is asked to read.
2
3    Copyright (C) 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002 Free Software
4    Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, read to the Free Software Foundation,
18    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 /* Specification.  */
25 #include "full-read.h"
26
27 #include <errno.h>
28 #ifndef errno
29 extern int errno;
30 #endif
31
32 #include "safe-read.h"
33
34 /* Read COUNT bytes at BUF to descriptor FD, retrying if interrupted
35    or if partial reads occur.  Return the number of bytes successfully
36    read, setting errno if that is less than COUNT.  errno = 0 means EOF.  */
37 size_t
38 full_read (int fd, void *buf, size_t count)
39 {
40   size_t total_read = 0;
41
42   if (count > 0)
43     {
44       char *ptr = buf;
45
46       do
47         {
48           size_t nread = safe_read (fd, ptr, count);
49           if (nread == (size_t)-1)
50             break;
51           if (nread == 0)
52             {
53               /* EOF.  */
54               errno = 0;
55               break;
56             }
57           total_read += nread;
58           ptr += nread;
59           count -= nread;
60         }
61       while (count > 0);
62     }
63
64   return total_read;
65 }