ice-9 poll handles buffered io too
[bpt/guile.git] / libguile / poll.c
1 /* Copyright (C) 2010 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
17 */
18
19
20 \f
21
22 #define _GNU_SOURCE
23
24 #ifdef HAVE_CONFIG_H
25 # include <config.h>
26 #endif
27
28 #include "libguile/_scm.h"
29 #include "libguile/bytevectors.h"
30 #include "libguile/numbers.h"
31 #include "libguile/error.h"
32 #include "libguile/validate.h"
33
34 #include "libguile/poll.h"
35
36 \f
37 #ifdef HAVE_POLL_H
38 #include <poll.h>
39 #endif
40
41 \f
42
43 /* {Poll}
44 */
45
46 /* Poll a set of file descriptors, waiting until one or more of them is
47 ready to perform input or output.
48
49 This is a low-level interface. See the `(ice-9 poll)' module for a more
50 usable wrapper.
51
52 `pollfds' is expected to be a bytevector, laid out in contiguous blocks of 64
53 bits. Each block has the format of one `struct pollfd': a 32-bit int file
54 descriptor, a 16-bit int events mask, and a 16-bit int revents mask.
55
56 The number of pollfd structures in `pollfds' is specified in
57 `nfds'. `pollfds' must be at least long enough to support that number of
58 structures. It may be longer, in which case the trailing entries are left
59 untouched.
60
61 The pollfds bytevector is modified directly, setting the returned events in
62 the final two bytes (the revents member).
63
64 Since Scheme ports can buffer input or output in userspace, a Scheme
65 poll interface needs to take that into account as well. The `ports'
66 argument, a vector big enough for `nfds' elements, is given for this
67 purpose. If a pollfd entry has a corresponding open port, that port
68 is scanned for available input or output before dropping into the
69 poll. If any port has buffered I/O available, the poll syscall is
70 still issued, but with a timeout of 0 milliseconds, and a full port
71 scan occurs after the poll returns.
72
73 If timeout is given and is non-negative, the poll will return after that
74 number of milliseconds if no fd became active.
75 */
76 #ifdef HAVE_POLL
77 static SCM
78 scm_primitive_poll (SCM pollfds, SCM nfds, SCM ports, SCM timeout)
79 #define FUNC_NAME "primitive-poll"
80 {
81 int rv = 0;
82 nfds_t i;
83 nfds_t c_nfds;
84 int c_timeout;
85 int have_buffered_io = 0;
86 struct pollfd *fds;
87
88 SCM_VALIDATE_BYTEVECTOR (SCM_ARG1, pollfds);
89 c_nfds = scm_to_uint32 (nfds);
90 c_timeout = scm_to_int (timeout);
91
92 if (SCM_UNLIKELY (SCM_BYTEVECTOR_LENGTH (pollfds)
93 < c_nfds * sizeof(struct pollfd)))
94 SCM_OUT_OF_RANGE (SCM_ARG2, nfds);
95
96 SCM_VALIDATE_VECTOR (SCM_ARG3, ports);
97 if (SCM_UNLIKELY (SCM_SIMPLE_VECTOR_LENGTH (ports) < c_nfds))
98 SCM_OUT_OF_RANGE (SCM_ARG3, ports);
99
100 fds = (struct pollfd*)SCM_BYTEVECTOR_CONTENTS (pollfds);
101
102 for (i = 0; i < c_nfds; i++)
103 {
104 SCM port = SCM_SIMPLE_VECTOR_REF (ports, i);
105 short int revents = 0;
106
107 if (SCM_PORTP (port))
108 {
109 if (SCM_CLOSEDP (port))
110 revents |= POLLERR;
111 else
112 {
113 scm_t_port *pt = SCM_PTAB_ENTRY (port);
114
115 if (pt->read_pos < pt->read_end)
116 /* Buffered input waiting to be read. */
117 revents |= POLLIN;
118 if (pt->write_pos < pt->write_end)
119 /* Buffered output possible. */
120 revents |= POLLOUT;
121 }
122 }
123
124 if (revents & fds[i].events)
125 {
126 have_buffered_io = 1;
127 c_timeout = 0;
128 break;
129 }
130 }
131
132 SCM_SYSCALL (rv = poll (fds, c_nfds, c_timeout));
133
134 if (rv == -1)
135 SCM_SYSERROR;
136
137 if (have_buffered_io)
138 for (i = 0; i < c_nfds; i++)
139 {
140 SCM port = SCM_SIMPLE_VECTOR_REF (ports, i);
141 short int revents = 0;
142
143 if (SCM_PORTP (port))
144 {
145 if (SCM_CLOSEDP (port))
146 revents |= POLLERR;
147 else
148 {
149 scm_t_port *pt = SCM_PTAB_ENTRY (port);
150
151 if (pt->read_pos < pt->read_end)
152 /* Buffered input waiting to be read. */
153 revents |= POLLIN;
154 if (pt->write_pos < pt->write_end)
155 /* Buffered output possible. */
156 revents |= POLLOUT;
157 }
158 }
159
160 if ((fds[i].revents = revents & fds[i].events))
161 rv++;
162 }
163
164 return scm_from_int (rv);
165 }
166 #undef FUNC_NAME
167 #endif /* HAVE_POLL */
168
169
170 \f
171
172 static void
173 scm_init_poll (void)
174 {
175 #if HAVE_POLL
176 scm_c_define_gsubr ("primitive-poll", 4, 0, 0, scm_primitive_poll);
177 #else
178 scm_misc_error ("%init-poll", "`poll' unavailable on this platform", SCM_EOL);
179 #endif
180
181 #ifdef POLLIN
182 scm_c_define ("POLLIN", scm_from_int (POLLIN));
183 #endif
184 #ifdef POLLPRI
185 scm_c_define ("POLLPRI", scm_from_int (POLLPRI));
186 #endif
187 #ifdef POLLOUT
188 scm_c_define ("POLLOUT", scm_from_int (POLLOUT));
189 #endif
190 #ifdef POLLRDHUP
191 scm_c_define ("POLLRDHUP", scm_from_int (POLLRDHUP));
192 #endif
193 #ifdef POLLERR
194 scm_c_define ("POLLERR", scm_from_int (POLLERR));
195 #endif
196 #ifdef POLLHUP
197 scm_c_define ("POLLHUP", scm_from_int (POLLHUP));
198 #endif
199 #ifdef POLLNVAL
200 scm_c_define ("POLLNVAL", scm_from_int (POLLNVAL));
201 #endif
202
203 }
204
205 void
206 scm_register_poll (void)
207 {
208 scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
209 "scm_init_poll",
210 (scm_t_extension_init_func) scm_init_poll,
211 NULL);
212 }
213
214 /*
215 Local Variables:
216 c-file-style: "gnu"
217 End:
218 */