maint: update copyright
[gnulib.git] / lib / stdio-read.c
1 /* POSIX compatible FILE stream read function.
2    Copyright (C) 2008-2014 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2011.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #include <config.h>
19
20 /* Specification.  */
21 #include <stdio.h>
22
23 /* Replace these functions only if module 'nonblocking' is requested.  */
24 #if GNULIB_NONBLOCKING
25
26 /* On native Windows platforms, when read() is called on a non-blocking pipe
27    with an empty buffer, ReadFile() fails with error GetLastError() =
28    ERROR_NO_DATA, and read() in consequence fails with error EINVAL.  This
29    read() function is at the basis of the function which fills the buffer of
30    a FILE stream.  */
31
32 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
33
34 #  include <errno.h>
35 #  include <io.h>
36
37 #  define WIN32_LEAN_AND_MEAN  /* avoid including junk */
38 #  include <windows.h>
39
40 #  include "msvc-nothrow.h"
41
42 #  define CALL_WITH_ERRNO_FIX(RETTYPE, EXPRESSION, FAILED) \
43   if (ferror (stream))                                                        \
44     return (EXPRESSION);                                                      \
45   else                                                                        \
46     {                                                                         \
47       RETTYPE ret;                                                            \
48       SetLastError (0);                                                       \
49       ret = (EXPRESSION);                                                     \
50       if (FAILED)                                                             \
51         {                                                                     \
52           if (GetLastError () == ERROR_NO_DATA && ferror (stream))            \
53             {                                                                 \
54               int fd = fileno (stream);                                       \
55               if (fd >= 0)                                                    \
56                 {                                                             \
57                   HANDLE h = (HANDLE) _get_osfhandle (fd);                    \
58                   if (GetFileType (h) == FILE_TYPE_PIPE)                      \
59                     {                                                         \
60                       /* h is a pipe or socket.  */                           \
61                       DWORD state;                                            \
62                       if (GetNamedPipeHandleState (h, &state, NULL, NULL,     \
63                                                    NULL, NULL, 0)             \
64                           && (state & PIPE_NOWAIT) != 0)                      \
65                         /* h is a pipe in non-blocking mode.                  \
66                            Change errno from EINVAL to EAGAIN.  */            \
67                         errno = EAGAIN;                                       \
68                     }                                                         \
69                 }                                                             \
70             }                                                                 \
71         }                                                                     \
72       return ret;                                                             \
73     }
74
75 /* Enable this function definition only if gnulib's <stdio.h> has prepared it.
76    Otherwise we get a function definition conflict with mingw64's <stdio.h>.  */
77 #  if GNULIB_SCANF
78 int
79 scanf (const char *format, ...)
80 {
81   int retval;
82   va_list args;
83
84   va_start (args, format);
85   retval = vfscanf (stdin, format, args);
86   va_end (args);
87
88   return retval;
89 }
90 #  endif
91
92 /* Enable this function definition only if gnulib's <stdio.h> has prepared it.
93    Otherwise we get a function definition conflict with mingw64's <stdio.h>.  */
94 #  if GNULIB_FSCANF
95 int
96 fscanf (FILE *stream, const char *format, ...)
97 {
98   int retval;
99   va_list args;
100
101   va_start (args, format);
102   retval = vfscanf (stream, format, args);
103   va_end (args);
104
105   return retval;
106 }
107 #  endif
108
109 /* Enable this function definition only if gnulib's <stdio.h> has prepared it.
110    Otherwise we get a function definition conflict with mingw64's <stdio.h>.  */
111 #  if GNULIB_VSCANF
112 int
113 vscanf (const char *format, va_list args)
114 {
115   return vfscanf (stdin, format, args);
116 }
117 #  endif
118
119 /* Enable this function definition only if gnulib's <stdio.h> has prepared it.
120    Otherwise we get a function definition conflict with mingw64's <stdio.h>.  */
121 #  if GNULIB_VFSCANF
122 int
123 vfscanf (FILE *stream, const char *format, va_list args)
124 #undef vfscanf
125 {
126   CALL_WITH_ERRNO_FIX (int, vfscanf (stream, format, args), ret == EOF)
127 }
128 #  endif
129
130 int
131 getchar (void)
132 {
133   return fgetc (stdin);
134 }
135
136 int
137 fgetc (FILE *stream)
138 #undef fgetc
139 {
140   CALL_WITH_ERRNO_FIX (int, fgetc (stream), ret == EOF)
141 }
142
143 char *
144 fgets (char *s, int n, FILE *stream)
145 #undef fgets
146 {
147   CALL_WITH_ERRNO_FIX (char *, fgets (s, n, stream), ret == NULL)
148 }
149
150 /* We intentionally don't bother to fix gets.  */
151
152 size_t
153 fread (void *ptr, size_t s, size_t n, FILE *stream)
154 #undef fread
155 {
156   CALL_WITH_ERRNO_FIX (size_t, fread (ptr, s, n, stream), ret < n)
157 }
158
159 # endif
160 #endif