Kannel: Open Source WAP and SMS gateway  svn-r5335
gwpoll.c
Go to the documentation of this file.
1 /* ====================================================================
2  * The Kannel Software License, Version 1.0
3  *
4  * Copyright (c) 2001-2018 Kannel Group
5  * Copyright (c) 1998-2001 WapIT Ltd.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  * notice, this list of conditions and the following disclaimer in
17  * the documentation and/or other materials provided with the
18  * distribution.
19  *
20  * 3. The end-user documentation included with the redistribution,
21  * if any, must include the following acknowledgment:
22  * "This product includes software developed by the
23  * Kannel Group (http://www.kannel.org/)."
24  * Alternately, this acknowledgment may appear in the software itself,
25  * if and wherever such third-party acknowledgments normally appear.
26  *
27  * 4. The names "Kannel" and "Kannel Group" must not be used to
28  * endorse or promote products derived from this software without
29  * prior written permission. For written permission, please
30  * contact org@kannel.org.
31  *
32  * 5. Products derived from this software may not be called "Kannel",
33  * nor may "Kannel" appear in their name, without prior written
34  * permission of the Kannel Group.
35  *
36  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
37  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
38  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39  * DISCLAIMED. IN NO EVENT SHALL THE KANNEL GROUP OR ITS CONTRIBUTORS
40  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
41  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
42  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
43  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
44  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
45  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
46  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Kannel Group. For more information on
51  * the Kannel Group, please see <http://www.kannel.org/>.
52  *
53  * Portions of this software are based upon software originally written at
54  * WapIT Ltd., Helsinki, Finland for the Kannel project.
55  */
56 
57 /* gwpoll.c - implement poll() for systems that don't have it */
58 
59 #include "gwlib/gwlib.h"
60 
61 #ifndef HAVE_SYS_POLL_H
62 
63 #include <sys/time.h>
64 #include <sys/types.h>
65 #include <unistd.h>
66 
67 int gw_poll(struct pollfd *fdarray, unsigned int numfds, int timeout)
68 {
69  struct timeval tv, *tvp;
70  unsigned int i;
71  int maxfd;
72  fd_set readfds, *rfdp;
73  fd_set writefds, *wfdp;
74  fd_set exceptfds, *xfdp;
75  int ret;
76  int result;
77 
78  FD_ZERO(&readfds);
79  FD_ZERO(&writefds);
80  FD_ZERO(&exceptfds);
81  maxfd = -1;
82  /* These are the pointers we will pass to select(). We use them because
83  * we may want to pass NULL for some of them. */
84  tvp = NULL;
85  rfdp = NULL;
86  wfdp = NULL;
87  xfdp = NULL;
88 
89  /* Deal with timeout. We get it in milliseconds. If it's negative,
90  * block indefinitely, which we do in select() by passing a NULL
91  * timeval pointer. */
92  if (timeout >= 0) {
93  tv.tv_sec = timeout / 1000;
94  tv.tv_usec = (timeout % 1000) * 1000;
95  tvp = &tv;
96  }
97 
98  /* Deal with fdarray, and convert it to the three fd_sets used by select. */
99  for (i = 0; i < numfds; i++) {
100  int fd = fdarray[i].fd;
101  int events = fdarray[i].events;
102  if (fd < 0)
103  continue;
104  if (events & POLLIN) {
105  FD_SET(fd, &readfds);
106  rfdp = &readfds;
107  }
108  if (events & POLLOUT) {
109  FD_SET(fd, &writefds);
110  wfdp = &writefds;
111  }
112  if (events & POLLPRI) {
113  FD_SET(fd, &exceptfds);
114  xfdp = &exceptfds;
115  }
116  if (fd > maxfd && events & (POLLIN | POLLOUT | POLLPRI))
117  maxfd = fd;
118  }
119 
120  ret = select(maxfd + 1, rfdp, wfdp, xfdp, tvp);
121  if (ret < 0)
122  return ret;
123 
124  /* Move the returned data from the fd sets to the revents fields
125  * in fdarray. We can't detect POLLNVAL except for obviously
126  * invalid fd's, and detecting POLLHUP or POLLERR would require
127  * an extra read() call per fd which is too expensive. */
128  result = 0;
129  for (i = 0; i < numfds; i++) {
130  if (fdarray[i].fd < 0) {
131  fdarray[i].revents = POLLNVAL;
132  continue;
133  }
134  fdarray[i].revents = 0;
135  if (rfdp && FD_ISSET(fdarray[i].fd, &readfds))
136  fdarray[i].revents |= POLLIN;
137  if (wfdp && FD_ISSET(fdarray[i].fd, &writefds))
138  fdarray[i].revents |= POLLOUT;
139  if (xfdp && FD_ISSET(fdarray[i].fd, &exceptfds))
140  fdarray[i].revents |= POLLPRI;
141  if (fdarray[i].revents != 0)
142  result++;
143  }
144 
145  return result;
146 }
147 
148 #endif
#define POLLNVAL
Definition: gwpoll.h:98
short events
Definition: gwpoll.h:86
#define POLLPRI
Definition: gwpoll.h:92
#define POLLIN
Definition: gwpoll.h:91
int gw_poll(struct pollfd *fdarray, unsigned int numfds, int timeout)
Definition: gwpoll.c:67
Definition: gwpoll.h:84
int fd
Definition: gwpoll.h:85
short revents
Definition: gwpoll.h:87
#define POLLOUT
Definition: gwpoll.h:93
See file LICENSE for details about the license agreement for using, modifying, copying or deriving work from this software.