blob: 1b88c987c663b3b84cea20dbcb7328072f14c4df [file] [log] [blame]
Guido van Rossum4f0fbf81996-06-12 04:22:53 +00001/* select - Module containing unix select(2) call.
Barry Warsawe4ac0aa1996-12-12 00:04:35 +00002 Under Unix, the file descriptors are small integers.
3 Under Win32, select only exists for sockets, and sockets may
4 have any value except INVALID_SOCKET.
Guido van Rossumbcc20741998-08-04 22:53:56 +00005 Under BeOS, we suffer the same dichotomy as Win32; sockets can be anything
6 >= 0.
Guido van Rossum4f0fbf81996-06-12 04:22:53 +00007*/
Guido van Rossumed233a51992-06-23 09:07:03 +00008
Barry Warsawe4ac0aa1996-12-12 00:04:35 +00009#include "Python.h"
Christian Heimes0e9ab5f2008-03-21 23:49:44 +000010#include <structmember.h>
Guido van Rossumed233a51992-06-23 09:07:03 +000011
Ronald Oussoren32fd16e2006-04-23 12:36:23 +000012#ifdef __APPLE__
13 /* Perform runtime testing for a broken poll on OSX to make it easier
14 * to use the same binary on multiple releases of the OS.
15 */
16#undef HAVE_BROKEN_POLL
17#endif
18
Tim Petersd92dfe02000-12-12 01:18:41 +000019/* Windows #defines FD_SETSIZE to 64 if FD_SETSIZE isn't already defined.
20 64 is too small (too many people have bumped into that limit).
21 Here we boost it.
22 Users who want even more than the boosted limit should #define
23 FD_SETSIZE higher before this; e.g., via compiler /D switch.
24*/
25#if defined(MS_WINDOWS) && !defined(FD_SETSIZE)
26#define FD_SETSIZE 512
Antoine Pitrouc83ea132010-05-09 14:46:46 +000027#endif
Tim Petersd92dfe02000-12-12 01:18:41 +000028
Andrew M. Kuchling737fbb32001-07-14 20:54:37 +000029#if defined(HAVE_POLL_H)
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +000030#include <poll.h>
Andrew M. Kuchling737fbb32001-07-14 20:54:37 +000031#elif defined(HAVE_SYS_POLL_H)
32#include <sys/poll.h>
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +000033#endif
Guido van Rossuma376cc51996-12-05 23:43:35 +000034
Guido van Rossum37273171996-12-09 18:47:43 +000035#ifdef __sgi
36/* This is missing from unistd.h */
Thomas Woutersbd4bc4e2000-07-22 23:57:55 +000037extern void bzero(void *, int);
Guido van Rossum37273171996-12-09 18:47:43 +000038#endif
39
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000040#ifdef HAVE_SYS_TYPES_H
Guido van Rossumb6775db1994-08-01 11:34:53 +000041#include <sys/types.h>
Guido van Rossumff7e83d1999-08-27 20:39:37 +000042#endif
Guido van Rossum4f0fbf81996-06-12 04:22:53 +000043
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000044#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000045#include <sys/time.h>
46#include <utils.h>
47#endif
48
Guido van Rossum6f489d91996-06-28 20:15:15 +000049#ifdef MS_WINDOWS
Neal Norwitz2a30cd02006-07-10 01:18:57 +000050# include <winsock.h>
Guido van Rossum4f0fbf81996-06-12 04:22:53 +000051#else
Neal Norwitz2a30cd02006-07-10 01:18:57 +000052# define SOCKET int
53# ifdef __BEOS__
54# include <net/socket.h>
55# elif defined(__VMS)
56# include <socket.h>
57# endif
Guido van Rossumbcc20741998-08-04 22:53:56 +000058#endif
Guido van Rossumed233a51992-06-23 09:07:03 +000059
Barry Warsawe4ac0aa1996-12-12 00:04:35 +000060static PyObject *SelectError;
Guido van Rossumed233a51992-06-23 09:07:03 +000061
Barry Warsawc1cb3601996-12-12 22:16:21 +000062/* list of Python objects and their file descriptor */
63typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +000064 PyObject *obj; /* owned reference */
65 SOCKET fd;
66 int sentinel; /* -1 == sentinel */
Guido van Rossum4f0fbf81996-06-12 04:22:53 +000067} pylist;
68
Barry Warsawc1cb3601996-12-12 22:16:21 +000069static void
Tim Peters4b046c22001-08-16 21:59:46 +000070reap_obj(pylist fd2obj[FD_SETSIZE + 1])
Barry Warsawc1cb3601996-12-12 22:16:21 +000071{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000072 int i;
73 for (i = 0; i < FD_SETSIZE + 1 && fd2obj[i].sentinel >= 0; i++) {
74 Py_XDECREF(fd2obj[i].obj);
75 fd2obj[i].obj = NULL;
76 }
77 fd2obj[0].sentinel = -1;
Barry Warsawc1cb3601996-12-12 22:16:21 +000078}
79
80
Barry Warsawe4ac0aa1996-12-12 00:04:35 +000081/* returns -1 and sets the Python exception if an error occurred, otherwise
82 returns a number >= 0
83*/
Guido van Rossum4f0fbf81996-06-12 04:22:53 +000084static int
Brett Cannon62dba4c2003-09-10 19:37:42 +000085seq2set(PyObject *seq, fd_set *set, pylist fd2obj[FD_SETSIZE + 1])
Guido van Rossumed233a51992-06-23 09:07:03 +000086{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000087 int i;
88 int max = -1;
89 int index = 0;
90 int len = -1;
91 PyObject* fast_seq = NULL;
92 PyObject* o = NULL;
Guido van Rossum07432c01995-03-29 16:47:45 +000093
Antoine Pitrouc83ea132010-05-09 14:46:46 +000094 fd2obj[0].obj = (PyObject*)0; /* set list to zero size */
95 FD_ZERO(set);
Barry Warsawc1cb3601996-12-12 22:16:21 +000096
Antoine Pitrouc83ea132010-05-09 14:46:46 +000097 fast_seq = PySequence_Fast(seq, "arguments 1-3 must be sequences");
98 if (!fast_seq)
99 return -1;
100
101 len = PySequence_Fast_GET_SIZE(fast_seq);
102
103 for (i = 0; i < len; i++) {
104 SOCKET v;
105
106 /* any intervening fileno() calls could decr this refcnt */
107 if (!(o = PySequence_Fast_GET_ITEM(fast_seq, i)))
Brett Cannon62dba4c2003-09-10 19:37:42 +0000108 return -1;
109
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000110 Py_INCREF(o);
111 v = PyObject_AsFileDescriptor( o );
112 if (v == -1) goto finally;
Barry Warsawc1cb3601996-12-12 22:16:21 +0000113
Guido van Rossum947a0fa2000-01-14 16:33:09 +0000114#if defined(_MSC_VER)
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000115 max = 0; /* not used for Win32 */
Barry Warsawc1cb3601996-12-12 22:16:21 +0000116#else /* !_MSC_VER */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000117 if (v < 0 || v >= FD_SETSIZE) {
118 PyErr_SetString(PyExc_ValueError,
119 "filedescriptor out of range in select()");
120 goto finally;
121 }
122 if (v > max)
123 max = v;
Barry Warsawc1cb3601996-12-12 22:16:21 +0000124#endif /* _MSC_VER */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000125 FD_SET(v, set);
Barry Warsawc1cb3601996-12-12 22:16:21 +0000126
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000127 /* add object and its file descriptor to the list */
128 if (index >= FD_SETSIZE) {
129 PyErr_SetString(PyExc_ValueError,
130 "too many file descriptors in select()");
131 goto finally;
132 }
133 fd2obj[index].obj = o;
134 fd2obj[index].fd = v;
135 fd2obj[index].sentinel = 0;
136 fd2obj[++index].sentinel = -1;
137 }
138 Py_DECREF(fast_seq);
139 return max+1;
Barry Warsawc1cb3601996-12-12 22:16:21 +0000140
141 finally:
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000142 Py_XDECREF(o);
143 Py_DECREF(fast_seq);
144 return -1;
Guido van Rossumed233a51992-06-23 09:07:03 +0000145}
146
Barry Warsawe4ac0aa1996-12-12 00:04:35 +0000147/* returns NULL and sets the Python exception if an error occurred */
148static PyObject *
Tim Peters4b046c22001-08-16 21:59:46 +0000149set2list(fd_set *set, pylist fd2obj[FD_SETSIZE + 1])
Guido van Rossumed233a51992-06-23 09:07:03 +0000150{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000151 int i, j, count=0;
152 PyObject *list, *o;
153 SOCKET fd;
Guido van Rossumed233a51992-06-23 09:07:03 +0000154
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000155 for (j = 0; fd2obj[j].sentinel >= 0; j++) {
156 if (FD_ISSET(fd2obj[j].fd, set))
157 count++;
158 }
159 list = PyList_New(count);
160 if (!list)
161 return NULL;
Barry Warsawe4ac0aa1996-12-12 00:04:35 +0000162
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000163 i = 0;
164 for (j = 0; fd2obj[j].sentinel >= 0; j++) {
165 fd = fd2obj[j].fd;
166 if (FD_ISSET(fd, set)) {
Guido van Rossum4f0fbf81996-06-12 04:22:53 +0000167#ifndef _MSC_VER
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000168 if (fd > FD_SETSIZE) {
169 PyErr_SetString(PyExc_SystemError,
170 "filedescriptor out of range returned in select()");
171 goto finally;
172 }
Guido van Rossum4f0fbf81996-06-12 04:22:53 +0000173#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000174 o = fd2obj[j].obj;
175 fd2obj[j].obj = NULL;
176 /* transfer ownership */
177 if (PyList_SetItem(list, i, o) < 0)
178 goto finally;
Barry Warsawc1cb3601996-12-12 22:16:21 +0000179
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000180 i++;
181 }
182 }
183 return list;
Barry Warsawc1cb3601996-12-12 22:16:21 +0000184 finally:
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000185 Py_DECREF(list);
186 return NULL;
Guido van Rossumed233a51992-06-23 09:07:03 +0000187}
Barry Warsawc1cb3601996-12-12 22:16:21 +0000188
Barry Warsawb44740f2001-08-16 16:52:59 +0000189#undef SELECT_USES_HEAP
190#if FD_SETSIZE > 1024
191#define SELECT_USES_HEAP
192#endif /* FD_SETSIZE > 1024 */
193
Barry Warsawe4ac0aa1996-12-12 00:04:35 +0000194static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000195select_select(PyObject *self, PyObject *args)
Guido van Rossumed233a51992-06-23 09:07:03 +0000196{
Barry Warsawb44740f2001-08-16 16:52:59 +0000197#ifdef SELECT_USES_HEAP
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000198 pylist *rfd2obj, *wfd2obj, *efd2obj;
Barry Warsawb44740f2001-08-16 16:52:59 +0000199#else /* !SELECT_USES_HEAP */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000200 /* XXX: All this should probably be implemented as follows:
201 * - find the highest descriptor we're interested in
202 * - add one
203 * - that's the size
204 * See: Stevens, APitUE, $12.5.1
205 */
206 pylist rfd2obj[FD_SETSIZE + 1];
207 pylist wfd2obj[FD_SETSIZE + 1];
208 pylist efd2obj[FD_SETSIZE + 1];
Barry Warsawb44740f2001-08-16 16:52:59 +0000209#endif /* SELECT_USES_HEAP */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000210 PyObject *ifdlist, *ofdlist, *efdlist;
211 PyObject *ret = NULL;
212 PyObject *tout = Py_None;
213 fd_set ifdset, ofdset, efdset;
214 double timeout;
215 struct timeval tv, *tvp;
216 long seconds;
217 int imax, omax, emax, max;
218 int n;
Guido van Rossumed233a51992-06-23 09:07:03 +0000219
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000220 /* convert arguments */
221 if (!PyArg_UnpackTuple(args, "select", 3, 4,
222 &ifdlist, &ofdlist, &efdlist, &tout))
223 return NULL;
Guido van Rossumed233a51992-06-23 09:07:03 +0000224
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000225 if (tout == Py_None)
226 tvp = (struct timeval *)0;
227 else if (!PyNumber_Check(tout)) {
228 PyErr_SetString(PyExc_TypeError,
229 "timeout must be a float or None");
230 return NULL;
231 }
232 else {
233 timeout = PyFloat_AsDouble(tout);
234 if (timeout == -1 && PyErr_Occurred())
235 return NULL;
236 if (timeout > (double)LONG_MAX) {
237 PyErr_SetString(PyExc_OverflowError,
238 "timeout period too long");
239 return NULL;
240 }
241 seconds = (long)timeout;
242 timeout = timeout - (double)seconds;
243 tv.tv_sec = seconds;
244 tv.tv_usec = (long)(timeout * 1E6);
245 tvp = &tv;
246 }
Guido van Rossumed233a51992-06-23 09:07:03 +0000247
Guido van Rossumed233a51992-06-23 09:07:03 +0000248
Barry Warsawb44740f2001-08-16 16:52:59 +0000249#ifdef SELECT_USES_HEAP
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000250 /* Allocate memory for the lists */
251 rfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
252 wfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
253 efd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1);
254 if (rfd2obj == NULL || wfd2obj == NULL || efd2obj == NULL) {
255 if (rfd2obj) PyMem_DEL(rfd2obj);
256 if (wfd2obj) PyMem_DEL(wfd2obj);
257 if (efd2obj) PyMem_DEL(efd2obj);
258 return PyErr_NoMemory();
259 }
Barry Warsawb44740f2001-08-16 16:52:59 +0000260#endif /* SELECT_USES_HEAP */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000261 /* Convert sequences to fd_sets, and get maximum fd number
262 * propagates the Python exception set in seq2set()
263 */
264 rfd2obj[0].sentinel = -1;
265 wfd2obj[0].sentinel = -1;
266 efd2obj[0].sentinel = -1;
267 if ((imax=seq2set(ifdlist, &ifdset, rfd2obj)) < 0)
268 goto finally;
269 if ((omax=seq2set(ofdlist, &ofdset, wfd2obj)) < 0)
270 goto finally;
271 if ((emax=seq2set(efdlist, &efdset, efd2obj)) < 0)
272 goto finally;
273 max = imax;
274 if (omax > max) max = omax;
275 if (emax > max) max = emax;
Guido van Rossumed233a51992-06-23 09:07:03 +0000276
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000277 Py_BEGIN_ALLOW_THREADS
278 n = select(max, &ifdset, &ofdset, &efdset, tvp);
279 Py_END_ALLOW_THREADS
Guido van Rossumed233a51992-06-23 09:07:03 +0000280
Thomas Heller106f4c72002-09-24 16:51:00 +0000281#ifdef MS_WINDOWS
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000282 if (n == SOCKET_ERROR) {
283 PyErr_SetExcFromWindowsErr(SelectError, WSAGetLastError());
284 }
Thomas Heller106f4c72002-09-24 16:51:00 +0000285#else
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000286 if (n < 0) {
287 PyErr_SetFromErrno(SelectError);
288 }
Thomas Heller106f4c72002-09-24 16:51:00 +0000289#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000290 else {
291 /* any of these three calls can raise an exception. it's more
292 convenient to test for this after all three calls... but
293 is that acceptable?
294 */
295 ifdlist = set2list(&ifdset, rfd2obj);
296 ofdlist = set2list(&ofdset, wfd2obj);
297 efdlist = set2list(&efdset, efd2obj);
298 if (PyErr_Occurred())
299 ret = NULL;
300 else
301 ret = PyTuple_Pack(3, ifdlist, ofdlist, efdlist);
Barry Warsawe4ac0aa1996-12-12 00:04:35 +0000302
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000303 Py_DECREF(ifdlist);
304 Py_DECREF(ofdlist);
305 Py_DECREF(efdlist);
306 }
307
Barry Warsawc1cb3601996-12-12 22:16:21 +0000308 finally:
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000309 reap_obj(rfd2obj);
310 reap_obj(wfd2obj);
311 reap_obj(efd2obj);
Barry Warsawb44740f2001-08-16 16:52:59 +0000312#ifdef SELECT_USES_HEAP
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000313 PyMem_DEL(rfd2obj);
314 PyMem_DEL(wfd2obj);
315 PyMem_DEL(efd2obj);
Barry Warsawb44740f2001-08-16 16:52:59 +0000316#endif /* SELECT_USES_HEAP */
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000317 return ret;
Guido van Rossumed233a51992-06-23 09:07:03 +0000318}
319
Nicholas Bastine62c5c82004-03-21 23:45:42 +0000320#if defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000321/*
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000322 * poll() support
323 */
324
325typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000326 PyObject_HEAD
327 PyObject *dict;
328 int ufd_uptodate;
329 int ufd_len;
330 struct pollfd *ufds;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000331} pollObject;
332
Jeremy Hylton938ace62002-07-17 16:30:39 +0000333static PyTypeObject poll_Type;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000334
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000335/* Update the malloc'ed array of pollfds to match the dictionary
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000336 contained within a pollObject. Return 1 on success, 0 on an error.
337*/
338
339static int
340update_ufd_array(pollObject *self)
341{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000342 Py_ssize_t i, pos;
343 PyObject *key, *value;
344 struct pollfd *old_ufds = self->ufds;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000345
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000346 self->ufd_len = PyDict_Size(self->dict);
347 PyMem_RESIZE(self->ufds, struct pollfd, self->ufd_len);
348 if (self->ufds == NULL) {
349 self->ufds = old_ufds;
350 PyErr_NoMemory();
351 return 0;
352 }
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000353
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000354 i = pos = 0;
355 while (PyDict_Next(self->dict, &pos, &key, &value)) {
356 self->ufds[i].fd = PyInt_AsLong(key);
357 self->ufds[i].events = (short)PyInt_AsLong(value);
358 i++;
359 }
360 self->ufd_uptodate = 1;
361 return 1;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000362}
363
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000364PyDoc_STRVAR(poll_register_doc,
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000365"register(fd [, eventmask] ) -> None\n\n\
366Register a file descriptor with the polling object.\n\
Barry Warsaw2f704552001-08-16 16:55:10 +0000367fd -- either an integer, or an object with a fileno() method returning an\n\
368 int.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000369events -- an optional bitmask describing the type of events to check for");
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000370
371static PyObject *
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000372poll_register(pollObject *self, PyObject *args)
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000373{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000374 PyObject *o, *key, *value;
375 int fd, events = POLLIN | POLLPRI | POLLOUT;
376 int err;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000377
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000378 if (!PyArg_ParseTuple(args, "O|i:register", &o, &events)) {
379 return NULL;
380 }
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000381
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000382 fd = PyObject_AsFileDescriptor(o);
383 if (fd == -1) return NULL;
Guido van Rossuma0dfc852001-10-25 20:18:35 +0000384
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000385 /* Add entry to the internal dictionary: the key is the
386 file descriptor, and the value is the event mask. */
387 key = PyInt_FromLong(fd);
388 if (key == NULL)
389 return NULL;
390 value = PyInt_FromLong(events);
391 if (value == NULL) {
392 Py_DECREF(key);
393 return NULL;
394 }
395 err = PyDict_SetItem(self->dict, key, value);
396 Py_DECREF(key);
397 Py_DECREF(value);
398 if (err < 0)
399 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000400
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000401 self->ufd_uptodate = 0;
402
403 Py_INCREF(Py_None);
404 return Py_None;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000405}
406
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000407PyDoc_STRVAR(poll_modify_doc,
408"modify(fd, eventmask) -> None\n\n\
Andrew M. Kuchlinga8c3f2b2008-03-26 00:16:50 +0000409Modify an already registered file descriptor.\n\
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000410fd -- either an integer, or an object with a fileno() method returning an\n\
411 int.\n\
412events -- an optional bitmask describing the type of events to check for");
413
414static PyObject *
415poll_modify(pollObject *self, PyObject *args)
416{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000417 PyObject *o, *key, *value;
418 int fd, events;
419 int err;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000420
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000421 if (!PyArg_ParseTuple(args, "Oi:modify", &o, &events)) {
422 return NULL;
423 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000424
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000425 fd = PyObject_AsFileDescriptor(o);
426 if (fd == -1) return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000427
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000428 /* Modify registered fd */
429 key = PyInt_FromLong(fd);
430 if (key == NULL)
431 return NULL;
432 if (PyDict_GetItem(self->dict, key) == NULL) {
433 errno = ENOENT;
434 PyErr_SetFromErrno(PyExc_IOError);
435 return NULL;
436 }
437 value = PyInt_FromLong(events);
438 if (value == NULL) {
439 Py_DECREF(key);
440 return NULL;
441 }
442 err = PyDict_SetItem(self->dict, key, value);
443 Py_DECREF(key);
444 Py_DECREF(value);
445 if (err < 0)
446 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000447
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000448 self->ufd_uptodate = 0;
449
450 Py_INCREF(Py_None);
451 return Py_None;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000452}
453
454
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000455PyDoc_STRVAR(poll_unregister_doc,
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000456"unregister(fd) -> None\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000457Remove a file descriptor being tracked by the polling object.");
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000458
459static PyObject *
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000460poll_unregister(pollObject *self, PyObject *o)
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000461{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000462 PyObject *key;
463 int fd;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000464
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000465 fd = PyObject_AsFileDescriptor( o );
466 if (fd == -1)
467 return NULL;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000468
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000469 /* Check whether the fd is already in the array */
470 key = PyInt_FromLong(fd);
471 if (key == NULL)
472 return NULL;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000473
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000474 if (PyDict_DelItem(self->dict, key) == -1) {
475 Py_DECREF(key);
476 /* This will simply raise the KeyError set by PyDict_DelItem
477 if the file descriptor isn't registered. */
478 return NULL;
479 }
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000480
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000481 Py_DECREF(key);
482 self->ufd_uptodate = 0;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000483
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000484 Py_INCREF(Py_None);
485 return Py_None;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000486}
487
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000488PyDoc_STRVAR(poll_poll_doc,
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000489"poll( [timeout] ) -> list of (fd, event) 2-tuples\n\n\
490Polls the set of registered file descriptors, returning a list containing \n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000491any descriptors that have events or errors to report.");
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000492
493static PyObject *
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000494poll_poll(pollObject *self, PyObject *args)
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000495{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000496 PyObject *result_list = NULL, *tout = NULL;
497 int timeout = 0, poll_result, i, j;
498 PyObject *value = NULL, *num = NULL;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000499
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000500 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) {
501 return NULL;
502 }
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000503
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000504 /* Check values for timeout */
505 if (tout == NULL || tout == Py_None)
506 timeout = -1;
507 else if (!PyNumber_Check(tout)) {
508 PyErr_SetString(PyExc_TypeError,
509 "timeout must be an integer or None");
510 return NULL;
511 }
512 else {
513 tout = PyNumber_Int(tout);
514 if (!tout)
515 return NULL;
516 timeout = PyInt_AsLong(tout);
517 Py_DECREF(tout);
518 if (timeout == -1 && PyErr_Occurred())
519 return NULL;
520 }
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000521
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000522 /* Ensure the ufd array is up to date */
523 if (!self->ufd_uptodate)
524 if (update_ufd_array(self) == 0)
525 return NULL;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000526
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000527 /* call poll() */
528 Py_BEGIN_ALLOW_THREADS
529 poll_result = poll(self->ufds, self->ufd_len, timeout);
530 Py_END_ALLOW_THREADS
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000531
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000532 if (poll_result < 0) {
533 PyErr_SetFromErrno(SelectError);
534 return NULL;
535 }
536
537 /* build the result list */
538
539 result_list = PyList_New(poll_result);
540 if (!result_list)
541 return NULL;
542 else {
543 for (i = 0, j = 0; j < poll_result; j++) {
544 /* skip to the next fired descriptor */
545 while (!self->ufds[i].revents) {
546 i++;
547 }
548 /* if we hit a NULL return, set value to NULL
549 and break out of loop; code at end will
550 clean up result_list */
551 value = PyTuple_New(2);
552 if (value == NULL)
553 goto error;
554 num = PyInt_FromLong(self->ufds[i].fd);
555 if (num == NULL) {
556 Py_DECREF(value);
557 goto error;
558 }
559 PyTuple_SET_ITEM(value, 0, num);
560
561 /* The &0xffff is a workaround for AIX. 'revents'
562 is a 16-bit short, and IBM assigned POLLNVAL
563 to be 0x8000, so the conversion to int results
564 in a negative number. See SF bug #923315. */
565 num = PyInt_FromLong(self->ufds[i].revents & 0xffff);
566 if (num == NULL) {
567 Py_DECREF(value);
568 goto error;
569 }
570 PyTuple_SET_ITEM(value, 1, num);
571 if ((PyList_SetItem(result_list, j, value)) == -1) {
572 Py_DECREF(value);
573 goto error;
574 }
575 i++;
576 }
577 }
578 return result_list;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000579
580 error:
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000581 Py_DECREF(result_list);
582 return NULL;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000583}
584
585static PyMethodDef poll_methods[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000586 {"register", (PyCFunction)poll_register,
587 METH_VARARGS, poll_register_doc},
588 {"modify", (PyCFunction)poll_modify,
589 METH_VARARGS, poll_modify_doc},
590 {"unregister", (PyCFunction)poll_unregister,
591 METH_O, poll_unregister_doc},
592 {"poll", (PyCFunction)poll_poll,
593 METH_VARARGS, poll_poll_doc},
594 {NULL, NULL} /* sentinel */
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000595};
596
597static pollObject *
Fred Drake8ce159a2000-08-31 05:18:54 +0000598newPollObject(void)
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000599{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000600 pollObject *self;
601 self = PyObject_New(pollObject, &poll_Type);
602 if (self == NULL)
603 return NULL;
604 /* ufd_uptodate is a Boolean, denoting whether the
605 array pointed to by ufds matches the contents of the dictionary. */
606 self->ufd_uptodate = 0;
607 self->ufds = NULL;
608 self->dict = PyDict_New();
609 if (self->dict == NULL) {
610 Py_DECREF(self);
611 return NULL;
612 }
613 return self;
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000614}
615
616static void
617poll_dealloc(pollObject *self)
618{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000619 if (self->ufds != NULL)
620 PyMem_DEL(self->ufds);
621 Py_XDECREF(self->dict);
622 PyObject_Del(self);
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000623}
624
625static PyObject *
626poll_getattr(pollObject *self, char *name)
627{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000628 return Py_FindMethod(poll_methods, (PyObject *)self, name);
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000629}
630
Tim Peters0c322792002-07-17 16:49:03 +0000631static PyTypeObject poll_Type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000632 /* The ob_type field must be initialized in the module init function
633 * to be portable to Windows without using C++. */
634 PyVarObject_HEAD_INIT(NULL, 0)
635 "select.poll", /*tp_name*/
636 sizeof(pollObject), /*tp_basicsize*/
637 0, /*tp_itemsize*/
638 /* methods */
639 (destructor)poll_dealloc, /*tp_dealloc*/
640 0, /*tp_print*/
641 (getattrfunc)poll_getattr, /*tp_getattr*/
642 0, /*tp_setattr*/
643 0, /*tp_compare*/
644 0, /*tp_repr*/
645 0, /*tp_as_number*/
646 0, /*tp_as_sequence*/
647 0, /*tp_as_mapping*/
648 0, /*tp_hash*/
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000649};
650
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000651PyDoc_STRVAR(poll_doc,
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000652"Returns a polling object, which supports registering and\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000653unregistering file descriptors, and then polling them for I/O events.");
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000654
655static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000656select_poll(PyObject *self, PyObject *unused)
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000657{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000658 return (PyObject *)newPollObject();
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000659}
Ronald Oussoren32fd16e2006-04-23 12:36:23 +0000660
661#ifdef __APPLE__
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000662/*
Ronald Oussoren32fd16e2006-04-23 12:36:23 +0000663 * On some systems poll() sets errno on invalid file descriptors. We test
664 * for this at runtime because this bug may be fixed or introduced between
665 * OS releases.
666 */
667static int select_have_broken_poll(void)
668{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000669 int poll_test;
670 int filedes[2];
Ronald Oussoren32fd16e2006-04-23 12:36:23 +0000671
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000672 struct pollfd poll_struct = { 0, POLLIN|POLLPRI|POLLOUT, 0 };
Ronald Oussoren32fd16e2006-04-23 12:36:23 +0000673
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000674 /* Create a file descriptor to make invalid */
675 if (pipe(filedes) < 0) {
676 return 1;
677 }
678 poll_struct.fd = filedes[0];
679 close(filedes[0]);
680 close(filedes[1]);
681 poll_test = poll(&poll_struct, 1, 0);
682 if (poll_test < 0) {
683 return 1;
684 } else if (poll_test == 0 && poll_struct.revents != POLLNVAL) {
685 return 1;
686 }
687 return 0;
Ronald Oussoren32fd16e2006-04-23 12:36:23 +0000688}
689#endif /* __APPLE__ */
690
691#endif /* HAVE_POLL */
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +0000692
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000693#ifdef HAVE_EPOLL
694/* **************************************************************************
695 * epoll interface for Linux 2.6
696 *
697 * Written by Christian Heimes
698 * Inspired by Twisted's _epoll.pyx and select.poll()
699 */
700
701#ifdef HAVE_SYS_EPOLL_H
702#include <sys/epoll.h>
703#endif
704
705typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000706 PyObject_HEAD
707 SOCKET epfd; /* epoll control file descriptor */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000708} pyEpoll_Object;
709
710static PyTypeObject pyEpoll_Type;
711#define pyepoll_CHECK(op) (PyObject_TypeCheck((op), &pyEpoll_Type))
712
713static PyObject *
714pyepoll_err_closed(void)
715{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000716 PyErr_SetString(PyExc_ValueError, "I/O operation on closed epoll fd");
717 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000718}
719
720static int
721pyepoll_internal_close(pyEpoll_Object *self)
722{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000723 int save_errno = 0;
724 if (self->epfd >= 0) {
725 int epfd = self->epfd;
726 self->epfd = -1;
727 Py_BEGIN_ALLOW_THREADS
728 if (close(epfd) < 0)
729 save_errno = errno;
730 Py_END_ALLOW_THREADS
731 }
732 return save_errno;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000733}
734
735static PyObject *
736newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd)
737{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000738 pyEpoll_Object *self;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000739
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000740 if (sizehint == -1) {
741 sizehint = FD_SETSIZE-1;
742 }
743 else if (sizehint < 1) {
744 PyErr_Format(PyExc_ValueError,
745 "sizehint must be greater zero, got %d",
746 sizehint);
747 return NULL;
748 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000749
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000750 assert(type != NULL && type->tp_alloc != NULL);
751 self = (pyEpoll_Object *) type->tp_alloc(type, 0);
752 if (self == NULL)
753 return NULL;
754
755 if (fd == -1) {
756 Py_BEGIN_ALLOW_THREADS
757 self->epfd = epoll_create(sizehint);
758 Py_END_ALLOW_THREADS
759 }
760 else {
761 self->epfd = fd;
762 }
763 if (self->epfd < 0) {
764 Py_DECREF(self);
765 PyErr_SetFromErrno(PyExc_IOError);
766 return NULL;
767 }
768 return (PyObject *)self;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000769}
770
771
772static PyObject *
773pyepoll_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
774{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000775 int sizehint = -1;
776 static char *kwlist[] = {"sizehint", NULL};
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000777
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000778 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|i:epoll", kwlist,
779 &sizehint))
780 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000781
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000782 return newPyEpoll_Object(type, sizehint, -1);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000783}
784
785
786static void
787pyepoll_dealloc(pyEpoll_Object *self)
788{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000789 (void)pyepoll_internal_close(self);
790 Py_TYPE(self)->tp_free(self);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000791}
792
793static PyObject*
794pyepoll_close(pyEpoll_Object *self)
795{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000796 errno = pyepoll_internal_close(self);
797 if (errno < 0) {
798 PyErr_SetFromErrno(PyExc_IOError);
799 return NULL;
800 }
801 Py_RETURN_NONE;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000802}
803
804PyDoc_STRVAR(pyepoll_close_doc,
805"close() -> None\n\
806\n\
807Close the epoll control file descriptor. Further operations on the epoll\n\
808object will raise an exception.");
809
810static PyObject*
811pyepoll_get_closed(pyEpoll_Object *self)
812{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000813 if (self->epfd < 0)
814 Py_RETURN_TRUE;
815 else
816 Py_RETURN_FALSE;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000817}
818
819static PyObject*
820pyepoll_fileno(pyEpoll_Object *self)
821{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000822 if (self->epfd < 0)
823 return pyepoll_err_closed();
824 return PyInt_FromLong(self->epfd);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000825}
826
827PyDoc_STRVAR(pyepoll_fileno_doc,
828"fileno() -> int\n\
829\n\
830Return the epoll control file descriptor.");
831
832static PyObject*
833pyepoll_fromfd(PyObject *cls, PyObject *args)
834{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000835 SOCKET fd;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000836
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000837 if (!PyArg_ParseTuple(args, "i:fromfd", &fd))
838 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000839
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000840 return newPyEpoll_Object((PyTypeObject*)cls, -1, fd);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000841}
842
843PyDoc_STRVAR(pyepoll_fromfd_doc,
844"fromfd(fd) -> epoll\n\
845\n\
846Create an epoll object from a given control fd.");
847
848static PyObject *
849pyepoll_internal_ctl(int epfd, int op, PyObject *pfd, unsigned int events)
850{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000851 struct epoll_event ev;
852 int result;
853 int fd;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000854
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000855 if (epfd < 0)
856 return pyepoll_err_closed();
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000857
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000858 fd = PyObject_AsFileDescriptor(pfd);
859 if (fd == -1) {
860 return NULL;
861 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000862
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000863 switch(op) {
864 case EPOLL_CTL_ADD:
865 case EPOLL_CTL_MOD:
866 ev.events = events;
867 ev.data.fd = fd;
868 Py_BEGIN_ALLOW_THREADS
869 result = epoll_ctl(epfd, op, fd, &ev);
870 Py_END_ALLOW_THREADS
871 break;
872 case EPOLL_CTL_DEL:
873 /* In kernel versions before 2.6.9, the EPOLL_CTL_DEL
874 * operation required a non-NULL pointer in event, even
875 * though this argument is ignored. */
876 Py_BEGIN_ALLOW_THREADS
877 result = epoll_ctl(epfd, op, fd, &ev);
878 if (errno == EBADF) {
879 /* fd already closed */
880 result = 0;
881 errno = 0;
882 }
883 Py_END_ALLOW_THREADS
884 break;
885 default:
886 result = -1;
887 errno = EINVAL;
888 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000889
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000890 if (result < 0) {
891 PyErr_SetFromErrno(PyExc_IOError);
892 return NULL;
893 }
894 Py_RETURN_NONE;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000895}
896
897static PyObject *
898pyepoll_register(pyEpoll_Object *self, PyObject *args, PyObject *kwds)
899{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000900 PyObject *pfd;
901 unsigned int events = EPOLLIN | EPOLLOUT | EPOLLPRI;
902 static char *kwlist[] = {"fd", "eventmask", NULL};
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000903
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000904 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|I:register", kwlist,
905 &pfd, &events)) {
906 return NULL;
907 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000908
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000909 return pyepoll_internal_ctl(self->epfd, EPOLL_CTL_ADD, pfd, events);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000910}
911
912PyDoc_STRVAR(pyepoll_register_doc,
Georg Brandl7d4bfb32010-08-02 21:44:25 +0000913"register(fd[, eventmask]) -> None\n\
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000914\n\
Georg Brandl7d4bfb32010-08-02 21:44:25 +0000915Registers a new fd or modifies an already registered fd.\n\
Andrew M. Kuchlinga8c3f2b2008-03-26 00:16:50 +0000916fd is the target file descriptor of the operation.\n\
917events is a bit set composed of the various EPOLL constants; the default\n\
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000918is EPOLL_IN | EPOLL_OUT | EPOLL_PRI.\n\
919\n\
920The epoll interface supports all file descriptors that support poll.");
921
922static PyObject *
923pyepoll_modify(pyEpoll_Object *self, PyObject *args, PyObject *kwds)
924{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000925 PyObject *pfd;
926 unsigned int events;
927 static char *kwlist[] = {"fd", "eventmask", NULL};
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000928
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000929 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OI:modify", kwlist,
930 &pfd, &events)) {
931 return NULL;
932 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000933
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000934 return pyepoll_internal_ctl(self->epfd, EPOLL_CTL_MOD, pfd, events);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000935}
936
937PyDoc_STRVAR(pyepoll_modify_doc,
938"modify(fd, eventmask) -> None\n\
939\n\
940fd is the target file descriptor of the operation\n\
941events is a bit set composed of the various EPOLL constants");
942
943static PyObject *
944pyepoll_unregister(pyEpoll_Object *self, PyObject *args, PyObject *kwds)
945{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000946 PyObject *pfd;
947 static char *kwlist[] = {"fd", NULL};
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000948
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000949 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:unregister", kwlist,
950 &pfd)) {
951 return NULL;
952 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000953
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000954 return pyepoll_internal_ctl(self->epfd, EPOLL_CTL_DEL, pfd, 0);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000955}
956
957PyDoc_STRVAR(pyepoll_unregister_doc,
958"unregister(fd) -> None\n\
959\n\
960fd is the target file descriptor of the operation.");
961
962static PyObject *
963pyepoll_poll(pyEpoll_Object *self, PyObject *args, PyObject *kwds)
964{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000965 double dtimeout = -1.;
966 int timeout;
967 int maxevents = -1;
968 int nfds, i;
969 PyObject *elist = NULL, *etuple = NULL;
970 struct epoll_event *evs = NULL;
971 static char *kwlist[] = {"timeout", "maxevents", NULL};
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000972
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000973 if (self->epfd < 0)
974 return pyepoll_err_closed();
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000975
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000976 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|di:poll", kwlist,
977 &dtimeout, &maxevents)) {
978 return NULL;
979 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000980
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000981 if (dtimeout < 0) {
982 timeout = -1;
983 }
984 else if (dtimeout * 1000.0 > INT_MAX) {
985 PyErr_SetString(PyExc_OverflowError,
986 "timeout is too large");
987 return NULL;
988 }
989 else {
990 timeout = (int)(dtimeout * 1000.0);
991 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +0000992
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000993 if (maxevents == -1) {
994 maxevents = FD_SETSIZE-1;
995 }
996 else if (maxevents < 1) {
997 PyErr_Format(PyExc_ValueError,
998 "maxevents must be greater than 0, got %d",
999 maxevents);
1000 return NULL;
1001 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001002
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001003 evs = PyMem_New(struct epoll_event, maxevents);
1004 if (evs == NULL) {
1005 Py_DECREF(self);
1006 PyErr_NoMemory();
1007 return NULL;
1008 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001009
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001010 Py_BEGIN_ALLOW_THREADS
1011 nfds = epoll_wait(self->epfd, evs, maxevents, timeout);
1012 Py_END_ALLOW_THREADS
1013 if (nfds < 0) {
1014 PyErr_SetFromErrno(PyExc_IOError);
1015 goto error;
1016 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001017
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001018 elist = PyList_New(nfds);
1019 if (elist == NULL) {
1020 goto error;
1021 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001022
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001023 for (i = 0; i < nfds; i++) {
1024 etuple = Py_BuildValue("iI", evs[i].data.fd, evs[i].events);
1025 if (etuple == NULL) {
1026 Py_CLEAR(elist);
1027 goto error;
1028 }
1029 PyList_SET_ITEM(elist, i, etuple);
1030 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001031
Georg Brandl018a3622008-03-26 12:57:47 +00001032 error:
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001033 PyMem_Free(evs);
1034 return elist;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001035}
1036
1037PyDoc_STRVAR(pyepoll_poll_doc,
1038"poll([timeout=-1[, maxevents=-1]]) -> [(fd, events), (...)]\n\
1039\n\
1040Wait for events on the epoll file descriptor for a maximum time of timeout\n\
1041in seconds (as float). -1 makes poll wait indefinitely.\n\
1042Up to maxevents are returned to the caller.");
1043
1044static PyMethodDef pyepoll_methods[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001045 {"fromfd", (PyCFunction)pyepoll_fromfd,
1046 METH_VARARGS | METH_CLASS, pyepoll_fromfd_doc},
1047 {"close", (PyCFunction)pyepoll_close, METH_NOARGS,
1048 pyepoll_close_doc},
1049 {"fileno", (PyCFunction)pyepoll_fileno, METH_NOARGS,
1050 pyepoll_fileno_doc},
1051 {"modify", (PyCFunction)pyepoll_modify,
1052 METH_VARARGS | METH_KEYWORDS, pyepoll_modify_doc},
1053 {"register", (PyCFunction)pyepoll_register,
1054 METH_VARARGS | METH_KEYWORDS, pyepoll_register_doc},
1055 {"unregister", (PyCFunction)pyepoll_unregister,
1056 METH_VARARGS | METH_KEYWORDS, pyepoll_unregister_doc},
1057 {"poll", (PyCFunction)pyepoll_poll,
1058 METH_VARARGS | METH_KEYWORDS, pyepoll_poll_doc},
1059 {NULL, NULL},
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001060};
1061
1062static PyGetSetDef pyepoll_getsetlist[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001063 {"closed", (getter)pyepoll_get_closed, NULL,
1064 "True if the epoll handler is closed"},
1065 {0},
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001066};
1067
1068PyDoc_STRVAR(pyepoll_doc,
1069"select.epoll([sizehint=-1])\n\
1070\n\
1071Returns an epolling object\n\
1072\n\
1073sizehint must be a positive integer or -1 for the default size. The\n\
1074sizehint is used to optimize internal data structures. It doesn't limit\n\
1075the maximum number of monitored events.");
1076
1077static PyTypeObject pyEpoll_Type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001078 PyVarObject_HEAD_INIT(NULL, 0)
1079 "select.epoll", /* tp_name */
1080 sizeof(pyEpoll_Object), /* tp_basicsize */
1081 0, /* tp_itemsize */
1082 (destructor)pyepoll_dealloc, /* tp_dealloc */
1083 0, /* tp_print */
1084 0, /* tp_getattr */
1085 0, /* tp_setattr */
1086 0, /* tp_compare */
1087 0, /* tp_repr */
1088 0, /* tp_as_number */
1089 0, /* tp_as_sequence */
1090 0, /* tp_as_mapping */
1091 0, /* tp_hash */
1092 0, /* tp_call */
1093 0, /* tp_str */
1094 PyObject_GenericGetAttr, /* tp_getattro */
1095 0, /* tp_setattro */
1096 0, /* tp_as_buffer */
1097 Py_TPFLAGS_DEFAULT, /* tp_flags */
1098 pyepoll_doc, /* tp_doc */
1099 0, /* tp_traverse */
1100 0, /* tp_clear */
1101 0, /* tp_richcompare */
1102 0, /* tp_weaklistoffset */
1103 0, /* tp_iter */
1104 0, /* tp_iternext */
1105 pyepoll_methods, /* tp_methods */
1106 0, /* tp_members */
1107 pyepoll_getsetlist, /* tp_getset */
1108 0, /* tp_base */
1109 0, /* tp_dict */
1110 0, /* tp_descr_get */
1111 0, /* tp_descr_set */
1112 0, /* tp_dictoffset */
1113 0, /* tp_init */
1114 0, /* tp_alloc */
1115 pyepoll_new, /* tp_new */
1116 0, /* tp_free */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001117};
1118
1119#endif /* HAVE_EPOLL */
1120
1121#ifdef HAVE_KQUEUE
1122/* **************************************************************************
1123 * kqueue interface for BSD
1124 *
1125 * Copyright (c) 2000 Doug White, 2006 James Knight, 2007 Christian Heimes
1126 * All rights reserved.
1127 *
1128 * Redistribution and use in source and binary forms, with or without
1129 * modification, are permitted provided that the following conditions
1130 * are met:
1131 * 1. Redistributions of source code must retain the above copyright
1132 * notice, this list of conditions and the following disclaimer.
1133 * 2. Redistributions in binary form must reproduce the above copyright
1134 * notice, this list of conditions and the following disclaimer in the
1135 * documentation and/or other materials provided with the distribution.
1136 *
1137 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1138 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1139 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1140 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1141 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1142 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1143 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1144 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1145 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1146 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1147 * SUCH DAMAGE.
1148 */
1149
1150#ifdef HAVE_SYS_EVENT_H
1151#include <sys/event.h>
1152#endif
1153
1154PyDoc_STRVAR(kqueue_event_doc,
Georg Brandlfa1ffb62009-12-29 21:09:17 +00001155"kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0)\n\
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001156\n\
1157This object is the equivalent of the struct kevent for the C API.\n\
1158\n\
1159See the kqueue manpage for more detailed information about the meaning\n\
1160of the arguments.\n\
1161\n\
1162One minor note: while you might hope that udata could store a\n\
1163reference to a python object, it cannot, because it is impossible to\n\
1164keep a proper reference count of the object once it's passed into the\n\
1165kernel. Therefore, I have restricted it to only storing an integer. I\n\
1166recommend ignoring it and simply using the 'ident' field to key off\n\
1167of. You could also set up a dictionary on the python side to store a\n\
1168udata->object mapping.");
1169
1170typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001171 PyObject_HEAD
1172 struct kevent e;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001173} kqueue_event_Object;
1174
1175static PyTypeObject kqueue_event_Type;
1176
1177#define kqueue_event_Check(op) (PyObject_TypeCheck((op), &kqueue_event_Type))
1178
1179typedef struct {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001180 PyObject_HEAD
1181 SOCKET kqfd; /* kqueue control fd */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001182} kqueue_queue_Object;
1183
1184static PyTypeObject kqueue_queue_Type;
1185
1186#define kqueue_queue_Check(op) (PyObject_TypeCheck((op), &kqueue_queue_Type))
1187
Antoine Pitrou323b9da2009-11-04 19:25:14 +00001188#if (SIZEOF_UINTPTR_T != SIZEOF_VOID_P)
1189# error uintptr_t does not match void *!
1190#elif (SIZEOF_UINTPTR_T == SIZEOF_LONG_LONG)
1191# define T_UINTPTRT T_ULONGLONG
1192# define T_INTPTRT T_LONGLONG
1193# define PyLong_AsUintptr_t PyLong_AsUnsignedLongLong
1194# define UINTPTRT_FMT_UNIT "K"
1195# define INTPTRT_FMT_UNIT "L"
1196#elif (SIZEOF_UINTPTR_T == SIZEOF_LONG)
1197# define T_UINTPTRT T_ULONG
1198# define T_INTPTRT T_LONG
1199# define PyLong_AsUintptr_t PyLong_AsUnsignedLong
1200# define UINTPTRT_FMT_UNIT "k"
1201# define INTPTRT_FMT_UNIT "l"
1202#elif (SIZEOF_UINTPTR_T == SIZEOF_INT)
1203# define T_UINTPTRT T_UINT
1204# define T_INTPTRT T_INT
1205# define PyLong_AsUintptr_t PyLong_AsUnsignedLong
1206# define UINTPTRT_FMT_UNIT "I"
1207# define INTPTRT_FMT_UNIT "i"
1208#else
1209# error uintptr_t does not match int, long, or long long!
1210#endif
1211
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001212/* Unfortunately, we can't store python objects in udata, because
1213 * kevents in the kernel can be removed without warning, which would
1214 * forever lose the refcount on the object stored with it.
1215 */
1216
1217#define KQ_OFF(x) offsetof(kqueue_event_Object, x)
1218static struct PyMemberDef kqueue_event_members[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001219 {"ident", T_UINTPTRT, KQ_OFF(e.ident)},
1220 {"filter", T_SHORT, KQ_OFF(e.filter)},
1221 {"flags", T_USHORT, KQ_OFF(e.flags)},
1222 {"fflags", T_UINT, KQ_OFF(e.fflags)},
1223 {"data", T_INTPTRT, KQ_OFF(e.data)},
1224 {"udata", T_UINTPTRT, KQ_OFF(e.udata)},
1225 {NULL} /* Sentinel */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001226};
1227#undef KQ_OFF
1228
1229static PyObject *
Georg Brandlea370a92010-02-23 21:48:57 +00001230
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001231kqueue_event_repr(kqueue_event_Object *s)
1232{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001233 char buf[1024];
1234 PyOS_snprintf(
1235 buf, sizeof(buf),
1236 "<select.kevent ident=%zu filter=%d flags=0x%x fflags=0x%x "
1237 "data=0x%zd udata=%p>",
1238 (size_t)(s->e.ident), s->e.filter, s->e.flags,
1239 s->e.fflags, (Py_ssize_t)(s->e.data), s->e.udata);
1240 return PyString_FromString(buf);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001241}
1242
1243static int
1244kqueue_event_init(kqueue_event_Object *self, PyObject *args, PyObject *kwds)
1245{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001246 PyObject *pfd;
1247 static char *kwlist[] = {"ident", "filter", "flags", "fflags",
1248 "data", "udata", NULL};
1249 static char *fmt = "O|hhi" INTPTRT_FMT_UNIT UINTPTRT_FMT_UNIT ":kevent";
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001250
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001251 EV_SET(&(self->e), 0, EVFILT_READ, EV_ADD, 0, 0, 0); /* defaults */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001252
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001253 if (!PyArg_ParseTupleAndKeywords(args, kwds, fmt, kwlist,
1254 &pfd, &(self->e.filter), &(self->e.flags),
1255 &(self->e.fflags), &(self->e.data), &(self->e.udata))) {
1256 return -1;
1257 }
1258
1259 if (PyLong_Check(pfd)) {
1260 self->e.ident = PyLong_AsUintptr_t(pfd);
1261 }
1262 else {
1263 self->e.ident = PyObject_AsFileDescriptor(pfd);
1264 }
1265 if (PyErr_Occurred()) {
1266 return -1;
1267 }
1268 return 0;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001269}
1270
1271static PyObject *
1272kqueue_event_richcompare(kqueue_event_Object *s, kqueue_event_Object *o,
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001273 int op)
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001274{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001275 Py_intptr_t result = 0;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001276
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001277 if (!kqueue_event_Check(o)) {
1278 if (op == Py_EQ || op == Py_NE) {
1279 PyObject *res = op == Py_EQ ? Py_False : Py_True;
1280 Py_INCREF(res);
1281 return res;
1282 }
1283 PyErr_Format(PyExc_TypeError,
1284 "can't compare %.200s to %.200s",
1285 Py_TYPE(s)->tp_name, Py_TYPE(o)->tp_name);
1286 return NULL;
1287 }
1288 if (((result = s->e.ident - o->e.ident) == 0) &&
1289 ((result = s->e.filter - o->e.filter) == 0) &&
1290 ((result = s->e.flags - o->e.flags) == 0) &&
1291 ((result = s->e.fflags - o->e.fflags) == 0) &&
1292 ((result = s->e.data - o->e.data) == 0) &&
1293 ((result = s->e.udata - o->e.udata) == 0)
1294 ) {
1295 result = 0;
1296 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001297
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001298 switch (op) {
1299 case Py_EQ:
1300 result = (result == 0);
1301 break;
1302 case Py_NE:
1303 result = (result != 0);
1304 break;
1305 case Py_LE:
1306 result = (result <= 0);
1307 break;
1308 case Py_GE:
1309 result = (result >= 0);
1310 break;
1311 case Py_LT:
1312 result = (result < 0);
1313 break;
1314 case Py_GT:
1315 result = (result > 0);
1316 break;
1317 }
1318 return PyBool_FromLong((long)result);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001319}
1320
1321static PyTypeObject kqueue_event_Type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001322 PyVarObject_HEAD_INIT(NULL, 0)
1323 "select.kevent", /* tp_name */
1324 sizeof(kqueue_event_Object), /* tp_basicsize */
1325 0, /* tp_itemsize */
1326 0, /* tp_dealloc */
1327 0, /* tp_print */
1328 0, /* tp_getattr */
1329 0, /* tp_setattr */
1330 0, /* tp_compare */
1331 (reprfunc)kqueue_event_repr, /* tp_repr */
1332 0, /* tp_as_number */
1333 0, /* tp_as_sequence */
1334 0, /* tp_as_mapping */
1335 0, /* tp_hash */
1336 0, /* tp_call */
1337 0, /* tp_str */
1338 0, /* tp_getattro */
1339 0, /* tp_setattro */
1340 0, /* tp_as_buffer */
1341 Py_TPFLAGS_DEFAULT, /* tp_flags */
1342 kqueue_event_doc, /* tp_doc */
1343 0, /* tp_traverse */
1344 0, /* tp_clear */
1345 (richcmpfunc)kqueue_event_richcompare, /* tp_richcompare */
1346 0, /* tp_weaklistoffset */
1347 0, /* tp_iter */
1348 0, /* tp_iternext */
1349 0, /* tp_methods */
1350 kqueue_event_members, /* tp_members */
1351 0, /* tp_getset */
1352 0, /* tp_base */
1353 0, /* tp_dict */
1354 0, /* tp_descr_get */
1355 0, /* tp_descr_set */
1356 0, /* tp_dictoffset */
1357 (initproc)kqueue_event_init, /* tp_init */
1358 0, /* tp_alloc */
1359 0, /* tp_new */
1360 0, /* tp_free */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001361};
1362
1363static PyObject *
1364kqueue_queue_err_closed(void)
1365{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001366 PyErr_SetString(PyExc_ValueError, "I/O operation on closed kqueue fd");
1367 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001368}
1369
1370static int
1371kqueue_queue_internal_close(kqueue_queue_Object *self)
1372{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001373 int save_errno = 0;
1374 if (self->kqfd >= 0) {
1375 int kqfd = self->kqfd;
1376 self->kqfd = -1;
1377 Py_BEGIN_ALLOW_THREADS
1378 if (close(kqfd) < 0)
1379 save_errno = errno;
1380 Py_END_ALLOW_THREADS
1381 }
1382 return save_errno;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001383}
1384
1385static PyObject *
1386newKqueue_Object(PyTypeObject *type, SOCKET fd)
1387{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001388 kqueue_queue_Object *self;
1389 assert(type != NULL && type->tp_alloc != NULL);
1390 self = (kqueue_queue_Object *) type->tp_alloc(type, 0);
1391 if (self == NULL) {
1392 return NULL;
1393 }
1394
1395 if (fd == -1) {
1396 Py_BEGIN_ALLOW_THREADS
1397 self->kqfd = kqueue();
1398 Py_END_ALLOW_THREADS
1399 }
1400 else {
1401 self->kqfd = fd;
1402 }
1403 if (self->kqfd < 0) {
1404 Py_DECREF(self);
1405 PyErr_SetFromErrno(PyExc_IOError);
1406 return NULL;
1407 }
1408 return (PyObject *)self;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001409}
1410
1411static PyObject *
1412kqueue_queue_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1413{
1414
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001415 if ((args != NULL && PyObject_Size(args)) ||
1416 (kwds != NULL && PyObject_Size(kwds))) {
1417 PyErr_SetString(PyExc_ValueError,
1418 "select.kqueue doesn't accept arguments");
1419 return NULL;
1420 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001421
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001422 return newKqueue_Object(type, -1);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001423}
1424
1425static void
1426kqueue_queue_dealloc(kqueue_queue_Object *self)
1427{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001428 kqueue_queue_internal_close(self);
1429 Py_TYPE(self)->tp_free(self);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001430}
1431
1432static PyObject*
1433kqueue_queue_close(kqueue_queue_Object *self)
1434{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001435 errno = kqueue_queue_internal_close(self);
1436 if (errno < 0) {
1437 PyErr_SetFromErrno(PyExc_IOError);
1438 return NULL;
1439 }
1440 Py_RETURN_NONE;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001441}
1442
1443PyDoc_STRVAR(kqueue_queue_close_doc,
1444"close() -> None\n\
1445\n\
1446Close the kqueue control file descriptor. Further operations on the kqueue\n\
1447object will raise an exception.");
1448
1449static PyObject*
1450kqueue_queue_get_closed(kqueue_queue_Object *self)
1451{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001452 if (self->kqfd < 0)
1453 Py_RETURN_TRUE;
1454 else
1455 Py_RETURN_FALSE;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001456}
1457
1458static PyObject*
1459kqueue_queue_fileno(kqueue_queue_Object *self)
1460{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001461 if (self->kqfd < 0)
1462 return kqueue_queue_err_closed();
1463 return PyInt_FromLong(self->kqfd);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001464}
1465
1466PyDoc_STRVAR(kqueue_queue_fileno_doc,
1467"fileno() -> int\n\
1468\n\
1469Return the kqueue control file descriptor.");
1470
1471static PyObject*
1472kqueue_queue_fromfd(PyObject *cls, PyObject *args)
1473{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001474 SOCKET fd;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001475
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001476 if (!PyArg_ParseTuple(args, "i:fromfd", &fd))
1477 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001478
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001479 return newKqueue_Object((PyTypeObject*)cls, fd);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001480}
1481
1482PyDoc_STRVAR(kqueue_queue_fromfd_doc,
1483"fromfd(fd) -> kqueue\n\
1484\n\
1485Create a kqueue object from a given control fd.");
1486
1487static PyObject *
1488kqueue_queue_control(kqueue_queue_Object *self, PyObject *args)
1489{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001490 int nevents = 0;
1491 int gotevents = 0;
1492 int nchanges = 0;
1493 int i = 0;
1494 PyObject *otimeout = NULL;
1495 PyObject *ch = NULL;
1496 PyObject *it = NULL, *ei = NULL;
1497 PyObject *result = NULL;
1498 struct kevent *evl = NULL;
1499 struct kevent *chl = NULL;
1500 struct timespec timeoutspec;
1501 struct timespec *ptimeoutspec;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001502
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001503 if (self->kqfd < 0)
1504 return kqueue_queue_err_closed();
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001505
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001506 if (!PyArg_ParseTuple(args, "Oi|O:control", &ch, &nevents, &otimeout))
1507 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001508
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001509 if (nevents < 0) {
1510 PyErr_Format(PyExc_ValueError,
1511 "Length of eventlist must be 0 or positive, got %d",
1512 nevents);
1513 return NULL;
1514 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001515
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001516 if (otimeout == Py_None || otimeout == NULL) {
1517 ptimeoutspec = NULL;
1518 }
1519 else if (PyNumber_Check(otimeout)) {
1520 double timeout;
1521 long seconds;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001522
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001523 timeout = PyFloat_AsDouble(otimeout);
1524 if (timeout == -1 && PyErr_Occurred())
1525 return NULL;
1526 if (timeout > (double)LONG_MAX) {
1527 PyErr_SetString(PyExc_OverflowError,
1528 "timeout period too long");
1529 return NULL;
1530 }
1531 if (timeout < 0) {
1532 PyErr_SetString(PyExc_ValueError,
1533 "timeout must be positive or None");
1534 return NULL;
1535 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001536
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001537 seconds = (long)timeout;
1538 timeout = timeout - (double)seconds;
1539 timeoutspec.tv_sec = seconds;
1540 timeoutspec.tv_nsec = (long)(timeout * 1E9);
1541 ptimeoutspec = &timeoutspec;
1542 }
1543 else {
1544 PyErr_Format(PyExc_TypeError,
1545 "timeout argument must be an number "
1546 "or None, got %.200s",
1547 Py_TYPE(otimeout)->tp_name);
1548 return NULL;
1549 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001550
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001551 if (ch != NULL && ch != Py_None) {
1552 it = PyObject_GetIter(ch);
1553 if (it == NULL) {
1554 PyErr_SetString(PyExc_TypeError,
1555 "changelist is not iterable");
1556 return NULL;
1557 }
1558 nchanges = PyObject_Size(ch);
1559 if (nchanges < 0) {
1560 goto error;
1561 }
Georg Brandlea370a92010-02-23 21:48:57 +00001562
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001563 chl = PyMem_New(struct kevent, nchanges);
1564 if (chl == NULL) {
1565 PyErr_NoMemory();
1566 goto error;
1567 }
1568 i = 0;
1569 while ((ei = PyIter_Next(it)) != NULL) {
1570 if (!kqueue_event_Check(ei)) {
1571 Py_DECREF(ei);
1572 PyErr_SetString(PyExc_TypeError,
1573 "changelist must be an iterable of "
1574 "select.kevent objects");
1575 goto error;
1576 } else {
1577 chl[i++] = ((kqueue_event_Object *)ei)->e;
1578 }
1579 Py_DECREF(ei);
1580 }
1581 }
1582 Py_CLEAR(it);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001583
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001584 /* event list */
1585 if (nevents) {
1586 evl = PyMem_New(struct kevent, nevents);
1587 if (evl == NULL) {
1588 PyErr_NoMemory();
1589 goto error;
1590 }
1591 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001592
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001593 Py_BEGIN_ALLOW_THREADS
1594 gotevents = kevent(self->kqfd, chl, nchanges,
1595 evl, nevents, ptimeoutspec);
1596 Py_END_ALLOW_THREADS
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001597
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001598 if (gotevents == -1) {
1599 PyErr_SetFromErrno(PyExc_OSError);
1600 goto error;
1601 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001602
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001603 result = PyList_New(gotevents);
1604 if (result == NULL) {
1605 goto error;
1606 }
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001607
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001608 for (i = 0; i < gotevents; i++) {
1609 kqueue_event_Object *ch;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001610
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001611 ch = PyObject_New(kqueue_event_Object, &kqueue_event_Type);
1612 if (ch == NULL) {
1613 goto error;
1614 }
1615 ch->e = evl[i];
1616 PyList_SET_ITEM(result, i, (PyObject *)ch);
1617 }
1618 PyMem_Free(chl);
1619 PyMem_Free(evl);
1620 return result;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001621
1622 error:
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001623 PyMem_Free(chl);
1624 PyMem_Free(evl);
1625 Py_XDECREF(result);
1626 Py_XDECREF(it);
1627 return NULL;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001628}
1629
1630PyDoc_STRVAR(kqueue_queue_control_doc,
Georg Brandl2f3bd832008-09-21 07:14:44 +00001631"control(changelist, max_events[, timeout=None]) -> eventlist\n\
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001632\n\
1633Calls the kernel kevent function.\n\
1634- changelist must be a list of kevent objects describing the changes\n\
1635 to be made to the kernel's watch list or None.\n\
1636- max_events lets you specify the maximum number of events that the\n\
1637 kernel will return.\n\
1638- timeout is the maximum time to wait in seconds, or else None,\n\
1639 to wait forever. timeout accepts floats for smaller timeouts, too.");
1640
1641
1642static PyMethodDef kqueue_queue_methods[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001643 {"fromfd", (PyCFunction)kqueue_queue_fromfd,
1644 METH_VARARGS | METH_CLASS, kqueue_queue_fromfd_doc},
1645 {"close", (PyCFunction)kqueue_queue_close, METH_NOARGS,
1646 kqueue_queue_close_doc},
1647 {"fileno", (PyCFunction)kqueue_queue_fileno, METH_NOARGS,
1648 kqueue_queue_fileno_doc},
1649 {"control", (PyCFunction)kqueue_queue_control,
1650 METH_VARARGS , kqueue_queue_control_doc},
1651 {NULL, NULL},
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001652};
1653
1654static PyGetSetDef kqueue_queue_getsetlist[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001655 {"closed", (getter)kqueue_queue_get_closed, NULL,
1656 "True if the kqueue handler is closed"},
1657 {0},
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001658};
1659
1660PyDoc_STRVAR(kqueue_queue_doc,
1661"Kqueue syscall wrapper.\n\
1662\n\
1663For example, to start watching a socket for input:\n\
1664>>> kq = kqueue()\n\
1665>>> sock = socket()\n\
1666>>> sock.connect((host, port))\n\
1667>>> kq.control([kevent(sock, KQ_FILTER_WRITE, KQ_EV_ADD)], 0)\n\
1668\n\
1669To wait one second for it to become writeable:\n\
1670>>> kq.control(None, 1, 1000)\n\
1671\n\
1672To stop listening:\n\
1673>>> kq.control([kevent(sock, KQ_FILTER_WRITE, KQ_EV_DELETE)], 0)");
1674
1675static PyTypeObject kqueue_queue_Type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001676 PyVarObject_HEAD_INIT(NULL, 0)
1677 "select.kqueue", /* tp_name */
1678 sizeof(kqueue_queue_Object), /* tp_basicsize */
1679 0, /* tp_itemsize */
1680 (destructor)kqueue_queue_dealloc, /* tp_dealloc */
1681 0, /* tp_print */
1682 0, /* tp_getattr */
1683 0, /* tp_setattr */
1684 0, /* tp_compare */
1685 0, /* tp_repr */
1686 0, /* tp_as_number */
1687 0, /* tp_as_sequence */
1688 0, /* tp_as_mapping */
1689 0, /* tp_hash */
1690 0, /* tp_call */
1691 0, /* tp_str */
1692 0, /* tp_getattro */
1693 0, /* tp_setattro */
1694 0, /* tp_as_buffer */
1695 Py_TPFLAGS_DEFAULT, /* tp_flags */
1696 kqueue_queue_doc, /* tp_doc */
1697 0, /* tp_traverse */
1698 0, /* tp_clear */
1699 0, /* tp_richcompare */
1700 0, /* tp_weaklistoffset */
1701 0, /* tp_iter */
1702 0, /* tp_iternext */
1703 kqueue_queue_methods, /* tp_methods */
1704 0, /* tp_members */
1705 kqueue_queue_getsetlist, /* tp_getset */
1706 0, /* tp_base */
1707 0, /* tp_dict */
1708 0, /* tp_descr_get */
1709 0, /* tp_descr_set */
1710 0, /* tp_dictoffset */
1711 0, /* tp_init */
1712 0, /* tp_alloc */
1713 kqueue_queue_new, /* tp_new */
1714 0, /* tp_free */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001715};
1716
1717#endif /* HAVE_KQUEUE */
1718/* ************************************************************************ */
1719
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001720PyDoc_STRVAR(select_doc,
Guido van Rossum1d8fb2d1998-06-28 16:54:49 +00001721"select(rlist, wlist, xlist[, timeout]) -> (rlist, wlist, xlist)\n\
1722\n\
1723Wait until one or more file descriptors are ready for some kind of I/O.\n\
Brett Cannon62dba4c2003-09-10 19:37:42 +00001724The first three arguments are sequences of file descriptors to be waited for:\n\
Guido van Rossum1d8fb2d1998-06-28 16:54:49 +00001725rlist -- wait until ready for reading\n\
1726wlist -- wait until ready for writing\n\
1727xlist -- wait for an ``exceptional condition''\n\
1728If only one kind of condition is required, pass [] for the other lists.\n\
1729A file descriptor is either a socket or file object, or a small integer\n\
1730gotten from a fileno() method call on one of those.\n\
1731\n\
1732The optional 4th argument specifies a timeout in seconds; it may be\n\
1733a floating point number to specify fractions of seconds. If it is absent\n\
1734or None, the call will never time out.\n\
1735\n\
1736The return value is a tuple of three lists corresponding to the first three\n\
1737arguments; each contains the subset of the corresponding file descriptors\n\
1738that are ready.\n\
1739\n\
1740*** IMPORTANT NOTICE ***\n\
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001741On Windows and OpenVMS, only sockets are supported; on Unix, all file\n\
Andrew M. Kuchlinga8c3f2b2008-03-26 00:16:50 +00001742descriptors can be used.");
Guido van Rossum1d8fb2d1998-06-28 16:54:49 +00001743
Barry Warsawe4ac0aa1996-12-12 00:04:35 +00001744static PyMethodDef select_methods[] = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001745 {"select", select_select, METH_VARARGS, select_doc},
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001746#ifdef HAVE_POLL
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001747 {"poll", select_poll, METH_NOARGS, poll_doc},
Ronald Oussoren32fd16e2006-04-23 12:36:23 +00001748#endif /* HAVE_POLL */
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001749 {0, 0}, /* sentinel */
Guido van Rossumed233a51992-06-23 09:07:03 +00001750};
1751
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001752PyDoc_STRVAR(module_doc,
Guido van Rossum1d8fb2d1998-06-28 16:54:49 +00001753"This module supports asynchronous I/O on multiple file descriptors.\n\
1754\n\
1755*** IMPORTANT NOTICE ***\n\
Neal Norwitz2a30cd02006-07-10 01:18:57 +00001756On Windows and OpenVMS, only sockets are supported; on Unix, all file descriptors.");
Guido van Rossumed233a51992-06-23 09:07:03 +00001757
Mark Hammond62b1ab12002-07-23 06:31:15 +00001758PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00001759initselect(void)
Guido van Rossumed233a51992-06-23 09:07:03 +00001760{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001761 PyObject *m;
1762 m = Py_InitModule3("select", select_methods, module_doc);
1763 if (m == NULL)
1764 return;
Fred Drake4baedc12002-04-01 14:53:37 +00001765
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001766 SelectError = PyErr_NewException("select.error", NULL, NULL);
1767 Py_INCREF(SelectError);
1768 PyModule_AddObject(m, "error", SelectError);
Ronald Oussoren32fd16e2006-04-23 12:36:23 +00001769
Amaury Forgeot d'Arcce32eb72009-07-09 22:37:22 +00001770#ifdef PIPE_BUF
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001771 PyModule_AddIntConstant(m, "PIPE_BUF", PIPE_BUF);
Amaury Forgeot d'Arcce32eb72009-07-09 22:37:22 +00001772#endif
Gregory P. Smith9d36fd22009-07-03 20:48:31 +00001773
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001774#if defined(HAVE_POLL)
Ronald Oussoren32fd16e2006-04-23 12:36:23 +00001775#ifdef __APPLE__
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001776 if (select_have_broken_poll()) {
1777 if (PyObject_DelAttrString(m, "poll") == -1) {
1778 PyErr_Clear();
1779 }
1780 } else {
Ronald Oussoren32fd16e2006-04-23 12:36:23 +00001781#else
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001782 {
Ronald Oussoren32fd16e2006-04-23 12:36:23 +00001783#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001784 Py_TYPE(&poll_Type) = &PyType_Type;
1785 PyModule_AddIntConstant(m, "POLLIN", POLLIN);
1786 PyModule_AddIntConstant(m, "POLLPRI", POLLPRI);
1787 PyModule_AddIntConstant(m, "POLLOUT", POLLOUT);
1788 PyModule_AddIntConstant(m, "POLLERR", POLLERR);
1789 PyModule_AddIntConstant(m, "POLLHUP", POLLHUP);
1790 PyModule_AddIntConstant(m, "POLLNVAL", POLLNVAL);
Andrew M. Kuchlingcf96dc82000-08-25 01:15:33 +00001791
Andrew M. Kuchling36d97eb2000-09-28 21:33:44 +00001792#ifdef POLLRDNORM
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001793 PyModule_AddIntConstant(m, "POLLRDNORM", POLLRDNORM);
Andrew M. Kuchling36d97eb2000-09-28 21:33:44 +00001794#endif
1795#ifdef POLLRDBAND
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001796 PyModule_AddIntConstant(m, "POLLRDBAND", POLLRDBAND);
Andrew M. Kuchling36d97eb2000-09-28 21:33:44 +00001797#endif
1798#ifdef POLLWRNORM
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001799 PyModule_AddIntConstant(m, "POLLWRNORM", POLLWRNORM);
Andrew M. Kuchling36d97eb2000-09-28 21:33:44 +00001800#endif
1801#ifdef POLLWRBAND
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001802 PyModule_AddIntConstant(m, "POLLWRBAND", POLLWRBAND);
Andrew M. Kuchling36d97eb2000-09-28 21:33:44 +00001803#endif
Sjoerd Mullender239f8362000-08-25 13:59:18 +00001804#ifdef POLLMSG
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001805 PyModule_AddIntConstant(m, "POLLMSG", POLLMSG);
Sjoerd Mullender239f8362000-08-25 13:59:18 +00001806#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001807 }
Ronald Oussoren32fd16e2006-04-23 12:36:23 +00001808#endif /* HAVE_POLL */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001809
1810#ifdef HAVE_EPOLL
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001811 Py_TYPE(&pyEpoll_Type) = &PyType_Type;
1812 if (PyType_Ready(&pyEpoll_Type) < 0)
1813 return;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001814
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001815 Py_INCREF(&pyEpoll_Type);
1816 PyModule_AddObject(m, "epoll", (PyObject *) &pyEpoll_Type);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001817
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001818 PyModule_AddIntConstant(m, "EPOLLIN", EPOLLIN);
1819 PyModule_AddIntConstant(m, "EPOLLOUT", EPOLLOUT);
1820 PyModule_AddIntConstant(m, "EPOLLPRI", EPOLLPRI);
1821 PyModule_AddIntConstant(m, "EPOLLERR", EPOLLERR);
1822 PyModule_AddIntConstant(m, "EPOLLHUP", EPOLLHUP);
1823 PyModule_AddIntConstant(m, "EPOLLET", EPOLLET);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001824#ifdef EPOLLONESHOT
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001825 /* Kernel 2.6.2+ */
1826 PyModule_AddIntConstant(m, "EPOLLONESHOT", EPOLLONESHOT);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001827#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001828 /* PyModule_AddIntConstant(m, "EPOLL_RDHUP", EPOLLRDHUP); */
1829 PyModule_AddIntConstant(m, "EPOLLRDNORM", EPOLLRDNORM);
1830 PyModule_AddIntConstant(m, "EPOLLRDBAND", EPOLLRDBAND);
1831 PyModule_AddIntConstant(m, "EPOLLWRNORM", EPOLLWRNORM);
1832 PyModule_AddIntConstant(m, "EPOLLWRBAND", EPOLLWRBAND);
1833 PyModule_AddIntConstant(m, "EPOLLMSG", EPOLLMSG);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001834#endif /* HAVE_EPOLL */
1835
1836#ifdef HAVE_KQUEUE
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001837 kqueue_event_Type.tp_new = PyType_GenericNew;
1838 Py_TYPE(&kqueue_event_Type) = &PyType_Type;
1839 if(PyType_Ready(&kqueue_event_Type) < 0)
1840 return;
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001841
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001842 Py_INCREF(&kqueue_event_Type);
1843 PyModule_AddObject(m, "kevent", (PyObject *)&kqueue_event_Type);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001844
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001845 Py_TYPE(&kqueue_queue_Type) = &PyType_Type;
1846 if(PyType_Ready(&kqueue_queue_Type) < 0)
1847 return;
1848 Py_INCREF(&kqueue_queue_Type);
1849 PyModule_AddObject(m, "kqueue", (PyObject *)&kqueue_queue_Type);
1850
1851 /* event filters */
1852 PyModule_AddIntConstant(m, "KQ_FILTER_READ", EVFILT_READ);
1853 PyModule_AddIntConstant(m, "KQ_FILTER_WRITE", EVFILT_WRITE);
1854 PyModule_AddIntConstant(m, "KQ_FILTER_AIO", EVFILT_AIO);
1855 PyModule_AddIntConstant(m, "KQ_FILTER_VNODE", EVFILT_VNODE);
1856 PyModule_AddIntConstant(m, "KQ_FILTER_PROC", EVFILT_PROC);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001857#ifdef EVFILT_NETDEV
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001858 PyModule_AddIntConstant(m, "KQ_FILTER_NETDEV", EVFILT_NETDEV);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001859#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001860 PyModule_AddIntConstant(m, "KQ_FILTER_SIGNAL", EVFILT_SIGNAL);
1861 PyModule_AddIntConstant(m, "KQ_FILTER_TIMER", EVFILT_TIMER);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001862
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001863 /* event flags */
1864 PyModule_AddIntConstant(m, "KQ_EV_ADD", EV_ADD);
1865 PyModule_AddIntConstant(m, "KQ_EV_DELETE", EV_DELETE);
1866 PyModule_AddIntConstant(m, "KQ_EV_ENABLE", EV_ENABLE);
1867 PyModule_AddIntConstant(m, "KQ_EV_DISABLE", EV_DISABLE);
1868 PyModule_AddIntConstant(m, "KQ_EV_ONESHOT", EV_ONESHOT);
1869 PyModule_AddIntConstant(m, "KQ_EV_CLEAR", EV_CLEAR);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001870
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001871 PyModule_AddIntConstant(m, "KQ_EV_SYSFLAGS", EV_SYSFLAGS);
1872 PyModule_AddIntConstant(m, "KQ_EV_FLAG1", EV_FLAG1);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001873
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001874 PyModule_AddIntConstant(m, "KQ_EV_EOF", EV_EOF);
1875 PyModule_AddIntConstant(m, "KQ_EV_ERROR", EV_ERROR);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001876
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001877 /* READ WRITE filter flag */
1878 PyModule_AddIntConstant(m, "KQ_NOTE_LOWAT", NOTE_LOWAT);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001879
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001880 /* VNODE filter flags */
1881 PyModule_AddIntConstant(m, "KQ_NOTE_DELETE", NOTE_DELETE);
1882 PyModule_AddIntConstant(m, "KQ_NOTE_WRITE", NOTE_WRITE);
1883 PyModule_AddIntConstant(m, "KQ_NOTE_EXTEND", NOTE_EXTEND);
1884 PyModule_AddIntConstant(m, "KQ_NOTE_ATTRIB", NOTE_ATTRIB);
1885 PyModule_AddIntConstant(m, "KQ_NOTE_LINK", NOTE_LINK);
1886 PyModule_AddIntConstant(m, "KQ_NOTE_RENAME", NOTE_RENAME);
1887 PyModule_AddIntConstant(m, "KQ_NOTE_REVOKE", NOTE_REVOKE);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001888
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001889 /* PROC filter flags */
1890 PyModule_AddIntConstant(m, "KQ_NOTE_EXIT", NOTE_EXIT);
1891 PyModule_AddIntConstant(m, "KQ_NOTE_FORK", NOTE_FORK);
1892 PyModule_AddIntConstant(m, "KQ_NOTE_EXEC", NOTE_EXEC);
1893 PyModule_AddIntConstant(m, "KQ_NOTE_PCTRLMASK", NOTE_PCTRLMASK);
1894 PyModule_AddIntConstant(m, "KQ_NOTE_PDATAMASK", NOTE_PDATAMASK);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001895
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001896 PyModule_AddIntConstant(m, "KQ_NOTE_TRACK", NOTE_TRACK);
1897 PyModule_AddIntConstant(m, "KQ_NOTE_CHILD", NOTE_CHILD);
1898 PyModule_AddIntConstant(m, "KQ_NOTE_TRACKERR", NOTE_TRACKERR);
1899
1900 /* NETDEV filter flags */
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001901#ifdef EVFILT_NETDEV
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001902 PyModule_AddIntConstant(m, "KQ_NOTE_LINKUP", NOTE_LINKUP);
1903 PyModule_AddIntConstant(m, "KQ_NOTE_LINKDOWN", NOTE_LINKDOWN);
1904 PyModule_AddIntConstant(m, "KQ_NOTE_LINKINV", NOTE_LINKINV);
Christian Heimes0e9ab5f2008-03-21 23:49:44 +00001905#endif
1906
1907#endif /* HAVE_KQUEUE */
Guido van Rossumed233a51992-06-23 09:07:03 +00001908}