]> git.sesse.net Git - vlc/commitdiff
Implement vlc_poll() on OS/2
authorKO Myung-Hun <komh@chollian.net>
Sun, 6 Nov 2011 09:58:28 +0000 (18:58 +0900)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 10 Nov 2011 20:38:22 +0000 (22:38 +0200)
Modified-and...
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
configure.ac
src/Makefile.am
src/os2/poll.c [new file with mode: 0644]
src/win32/poll.c

index 9d554a279adcb713bd0d10552b3ffdec481d6318..48efc6903fd912456883f3a1579ab4e5d78b2855 100644 (file)
@@ -566,7 +566,7 @@ dnl Check for poll
 AC_SEARCH_LIBS(poll, [poll], [
   AC_DEFINE(HAVE_POLL, 1, [Define to 1 if the OS has poll().])
 ], [
-  AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
+  AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "os2"], [
     AC_MSG_ERROR([poll() is required.])
   ])
 ])
index a64f891bc53e00f76a70d3600bb9529798322554..e93961db7dc18ae02af2473031d645ce468246ca 100644 (file)
@@ -281,6 +281,7 @@ SOURCES_libvlc_os2 = \
        misc/atomic.c \
        posix/filesystem.c \
        posix/plugin.c \
+       os2/poll.c \
        os2/thread.c \
        os2/specific.c \
        $(NULL)
diff --git a/src/os2/poll.c b/src/os2/poll.c
new file mode 100644 (file)
index 0000000..a4ef100
--- /dev/null
@@ -0,0 +1,109 @@
+/*****************************************************************************
+ * poll.c: poll() emulation for OS/2
+ *****************************************************************************
+ * Copyright © 2011 KO Myung-Hun <komh@chollian.et>
+ * Copyright © 2007 Rémi Denis-Courmont
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+#include <sys/time.h>
+
+#include <vlc_common.h>
+#include <vlc_network.h>
+
+int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout)
+{
+    fd_set rdset;
+    fd_set wrset;
+    fd_set exset;
+    struct timeval tv = { 0, 0 };
+    int val;
+
+resume:
+    val = -1;
+    vlc_testcancel ();
+
+    FD_ZERO (&rdset);
+    FD_ZERO (&wrset);
+    FD_ZERO (&exset);
+    for (unsigned i = 0; i < nfds; i++)
+    {
+        int fd = fds[i].fd;
+
+        if (fds[i].fd >= FD_SETSIZE)
+        {
+            errno = EINVAL;
+            return -1;
+        }
+
+        if (val < fd)
+            val = fd;
+
+        if (fds[i].events & POLLIN)
+            FD_SET (fd, &rdset);
+        if (fds[i].events & POLLOUT)
+            FD_SET (fd, &wrset);
+        if (fds[i].events & POLLPRI)
+            FD_SET (fd, &exset);
+    }
+
+#ifndef HAVE_ALERTABLE_SELECT
+# warning FIXME! Fix cancellation and remove this crap.
+    if ((timeout < 0) || (timeout > 50))
+    {
+        tv.tv_sec = 0;
+        tv.tv_usec = 50000;
+    }
+    else
+#endif
+    if (timeout >= 0)
+    {
+        div_t d = div (timeout, 1000);
+        tv.tv_sec = d.quot;
+        tv.tv_usec = d.rem * 1000;
+    }
+
+    val = select (val + 1, &rdset, &wrset, &exset, &tv);
+
+#ifndef HAVE_ALERTABLE_SELECT
+    if (val == 0)
+    {
+        if (timeout > 0)
+            timeout -= (timeout > 50) ? 50 : timeout;
+        if (timeout != 0)
+            goto resume;
+    }
+#endif
+
+    if (val == -1)
+        return -1;
+
+    for (unsigned i = 0; i < nfds; i++)
+    {
+        int fd = fds[i].fd;
+        fds[i].revents = (FD_ISSET (fd, &rdset) ? POLLIN : 0)
+                       | (FD_ISSET (fd, &wrset) ? POLLOUT : 0)
+                       | (FD_ISSET (fd, &exset) ? POLLPRI : 0);
+    }
+    return val;
+}
index 4fa693fe92888054317657044e39069d7ab3fd36..1b2ec488d10d0e2d32f5963206ad57aeb831e02b 100644 (file)
 #define FD_SETSIZE 0
 #include <vlc_network.h>
 
-#ifdef __OS2__
-#include <sys/time.h>
-#include <sys/select.h>
-#define SOCKET unsigned
-#endif
-
 int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout)
 {
     size_t setsize = sizeof (fd_set) + nfds * sizeof (SOCKET);