Orthogonal approach to read()/write() that handles EINTR and counts > 2^31
[gnulib.git] / lib / full-write.c
1 /* An interface to write() that writes all it is asked to write.
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, write 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-write.h"
26
27 #include <errno.h>
28 #ifndef errno
29 extern int errno;
30 #endif
31
32 #include "safe-write.h"
33
34 /* Write COUNT bytes at BUF to descriptor FD, retrying if interrupted
35    or if partial writes occur.  Return the number of bytes successfully
36    written, setting errno if that is less than COUNT.  */
37 size_t
38 full_write (int fd, const void *buf, size_t count)
39 {
40   size_t total_written = 0;
41
42   if (count > 0)
43     {
44       const char *ptr = buf;
45
46       do
47         {
48           size_t written = safe_write (fd, ptr, count);
49           if (written == (size_t)-1)
50             break;
51           if (written == 0)
52             {
53               /* Some buggy drivers return 0 when you fall off a device's
54                  end.  (Example: Linux 1.2.13 on /dev/fd0.)  */
55               errno = ENOSPC;
56               break;
57             }
58           total_written += written;
59           ptr += written;
60           count -= written;
61         }
62       while (count > 0);
63     }
64
65   return total_written;
66 }