]> git.llucax.com Git - software/libev.git/commitdiff
add solaris port backend
authorroot <root>
Fri, 16 Nov 2007 01:33:53 +0000 (01:33 +0000)
committerroot <root>
Fri, 16 Nov 2007 01:33:53 +0000 (01:33 +0000)
README.embed
ev.c
ev.h
ev_port.c [new file with mode: 0644]
ev_vars.h
ev_wrap.h

index b7e3ea473bf5233b95fbcc21a942545397496618..06c4c6cbd8eed3f5af3dcf12b0776df5e03e3cf7 100644 (file)
@@ -147,8 +147,14 @@ PREPROCESSOR SYMBOLS
        will be detected at runtime and routed around by disabling this
        backend.
 
+    EV_USE_PORT
+
+       If defined to be "1", libev will compile in support for the Solaris
+       10 port style backend. Its availability will be detected at runtime,
+       otherwise another method will be used as fallback. This is the
+       preferred backend for Solaris 10 systems.
+
     EV_USE_DEVPOLL
-    EV_USE_PORTS
     
        reserved for future expansion, works like the USE symbols above.
 
diff --git a/ev.c b/ev.c
index 335c788705c1868a919bb06ba823b5f8cc0fca1b..03da7626828d5d865c45b31e8fe075d9c0906d24 100644 (file)
--- a/ev.c
+++ b/ev.c
@@ -61,6 +61,10 @@ extern "C" {
 #  define EV_USE_KQUEUE 1
 # endif
 
+# if HAVE_PORT_H && HAVE_PORT_H && HAVE_PORT_CREATE && !defined (EV_USE_PORT)
+#  define EV_USE_PORT 1
+# endif
+
 #endif
 
 #include <math.h>
@@ -95,6 +99,10 @@ extern "C" {
 # define EV_USE_MONOTONIC 1
 #endif
 
+#ifndef EV_USE_REALTIME
+# define EV_USE_REALTIME 1
+#endif
+
 #ifndef EV_USE_SELECT
 # define EV_USE_SELECT 1
 # define EV_SELECT_USE_FD_SET 1
@@ -116,8 +124,8 @@ extern "C" {
 # define EV_USE_KQUEUE 0
 #endif
 
-#ifndef EV_USE_REALTIME
-# define EV_USE_REALTIME 1
+#ifndef EV_USE_PORT
+# define EV_USE_PORT 0
 #endif
 
 /**/
@@ -712,6 +720,9 @@ childcb (EV_P_ struct ev_signal *sw, int revents)
 
 /*****************************************************************************/
 
+#if EV_USE_PORT
+# include "ev_port.c"
+#endif
 #if EV_USE_KQUEUE
 # include "ev_kqueue.c"
 #endif
@@ -780,6 +791,9 @@ loop_init (EV_P_ unsigned int flags)
         flags |= 0x0000ffff;
 
       method = 0;
+#if EV_USE_PORT
+      if (!method && (flags & EVMETHOD_PORT  )) method = port_init   (EV_A_ flags);
+#endif
 #if EV_USE_KQUEUE
       if (!method && (flags & EVMETHOD_KQUEUE)) method = kqueue_init (EV_A_ flags);
 #endif
@@ -803,6 +817,9 @@ loop_destroy (EV_P)
 {
   int i;
 
+#if EV_USE_PORT
+  if (method == EVMETHOD_PORT  ) port_destroy   (EV_A);
+#endif
 #if EV_USE_KQUEUE
   if (method == EVMETHOD_KQUEUE) kqueue_destroy (EV_A);
 #endif
@@ -835,12 +852,15 @@ loop_destroy (EV_P)
 static void
 loop_fork (EV_P)
 {
-#if EV_USE_EPOLL
-  if (method == EVMETHOD_EPOLL ) epoll_fork  (EV_A);
+#if EV_USE_PORT
+  if (method == EVMETHOD_PORT  ) port_fork   (EV_A);
 #endif
 #if EV_USE_KQUEUE
   if (method == EVMETHOD_KQUEUE) kqueue_fork (EV_A);
 #endif
+#if EV_USE_EPOLL
+  if (method == EVMETHOD_EPOLL ) epoll_fork  (EV_A);
+#endif
 
   if (ev_is_active (&sigev))
     {
diff --git a/ev.h b/ev.h
index af6c2da54be0e5db0599888a8ee06d0d98528922..8a40ef1cf36db39fd2ead832bed05ca13dedc7b7 100644 (file)
--- a/ev.h
+++ b/ev.h
@@ -241,7 +241,7 @@ union ev_any_watcher
 #define EVMETHOD_EPOLL   0x00000004 /* linux */
 #define EVMETHOD_KQUEUE  0x00000008 /* bsd */
 #define EVMETHOD_DEVPOLL 0x00000010 /* solaris 8 */ /* NYI */
-#define EVMETHOD_PORT    0x00000020 /* solaris 10 */ /* NYI */
+#define EVMETHOD_PORT    0x00000020 /* solaris 10 */
 
 /* flag bits */
 #define EVFLAG_NOENV     0x01000000 /* do NOT consult environment */
diff --git a/ev_port.c b/ev_port.c
new file mode 100644 (file)
index 0000000..fb25dff
--- /dev/null
+++ b/ev_port.c
@@ -0,0 +1,147 @@
+/*
+ * Copyright 2007      Marc Alexander Lehmann <libev@schmorp.de>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. The name of the author may not be used to endorse or promote products
+ *    derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/types.h>
+#include <sys/time.h>
+#include <poll.h>
+#include <port.h>
+#include <string.h>
+#include <errno.h>
+
+static void
+port_modify (EV_P_ int fd, int oev, int nev)
+{
+  /* we need to reassociate no matter what, as closes are
+   * once more silently being discarded.
+   */
+  if (!nev)
+    {
+      if (oev)
+        port_dissociate (port_fd, PORT_SOURCE_FD, fd);
+    }
+  else if (0 >
+      port_associate (
+         port_fd, PORT_SOURCE_FD, fd,
+         (nev & EV_READ ? POLLIN : 0)
+         | (nev & EV_WRITE ? POLLOUT : 0),
+         0
+      )
+  )
+    {
+      if (errno == EBADFD)
+        fd_kill (EV_A_ fd);
+      else
+        syserr ("(libev) port_associate");
+    } 
+}
+
+static void
+port_poll (EV_P_ ev_tstamp timeout)
+{
+  int res, i;
+  struct timespec ts;
+  uint_t nget = 1;
+
+  ts.tv_sec  = (time_t)timeout;
+  ts.tv_nsec = (long)(timeout - (ev_tstamp)ts.tv_sec) * 1e9;
+  res = port_getn (port_fd, port_events, port_eventmax, &nget, &ts);
+
+  if (res < 0)
+    { 
+      if (errno != EINTR && errno != ETIME)
+        syserr ("(libev) port_getn");
+
+      return;
+    } 
+
+  for (i = 0; i < nget; ++i)
+    {
+      if (port_events [i].portev_source == PORT_SOURCE_FD)
+        {
+          int fd = port_events [i].portev_object;
+
+          fd_event (
+            EV_A_
+            fd,
+            (port_events [i].portev_events & (POLLOUT | POLLERR | POLLHUP) ? EV_WRITE : 0)
+            | (port_events [i].portev_events & (POLLIN | POLLERR | POLLHUP) ? EV_READ : 0)
+          );
+
+          anfds [fd].events = 0; /* event received == disassociated */
+          fd_change (EV_A_ fd); /* need to reify later */
+        }
+    }
+
+  if (expect_false (nget == port_eventmax))
+    {
+      ev_free (port_events);
+      port_eventmax = array_roundsize (port_event_t, port_eventmax << 1);
+      port_events = (port_event_t *)ev_malloc (sizeof (port_event_t) * port_eventmax);
+    }
+}
+
+static int
+port_init (EV_P_ int flags)
+{
+  /* Initalize the kernel queue */
+  if ((port_fd = port_create ()) < 0)
+    return 0;
+
+  fcntl (port_fd, F_SETFD, FD_CLOEXEC); /* not sure if necessary, hopefully doesn't hurt */
+
+  method_fudge  = 1e-3; /* needed to compensate for port_getn returning early */
+  method_modify = port_modify;
+  method_poll   = port_poll;
+
+  port_eventmax = 64; /* intiial number of events receivable per poll */
+  port_events = (port_event_t *)ev_malloc (sizeof (port_event_t) * port_eventmax);
+
+  return EVMETHOD_PORT;
+}
+
+static void
+port_destroy (EV_P)
+{
+  close (port_fd);
+
+  ev_free (port_events);
+}
+
+static void
+port_fork (EV_P)
+{
+  close (port_fd);
+
+  while ((port_fd = port_create ()) < 0)
+    syserr ("(libev) port");
+
+  fcntl (port_fd, F_SETFD, FD_CLOEXEC);
+
+  /* re-register interest in fds */
+  fd_rearm_all (EV_A);
+}
+
index e73d37dac73fdd3cdeb2b8ca92f1b2838b3584a9..aa19fc1a84d805513803703228729e0bffe6e052 100644 (file)
--- a/ev_vars.h
+++ b/ev_vars.h
@@ -44,6 +44,12 @@ VARx(struct kevent *, kqueue_events)
 VARx(int, kqueue_eventmax)
 #endif
 
+#if EV_USE_PORT || EV_GENWRAP
+VARx(int, port_fd)
+VARx(struct port_event *, port_events)
+VARx(int, port_eventmax)
+#endif
+
 VARx(ANFD *, anfds)
 VARx(int, anfdmax)
 
index 0777c7d8ad423c6beea10edb7fef6a93db33dc04..19537a49cf9196e1a47ec76c5c2ecec3ce9cf06c 100644 (file)
--- a/ev_wrap.h
+++ b/ev_wrap.h
@@ -1,4 +1,4 @@
-/* DO NOT EDIT, automaticlaly generated by update_ev_wrap */
+/* DO NOT EDIT, automatically generated by update_ev_wrap */
 #define now_floor ((loop)->now_floor)
 #define mn_now ((loop)->mn_now)
 #define rtmn_diff ((loop)->rtmn_diff)
@@ -27,6 +27,9 @@
 #define kqueue_changecnt ((loop)->kqueue_changecnt)
 #define kqueue_events ((loop)->kqueue_events)
 #define kqueue_eventmax ((loop)->kqueue_eventmax)
+#define port_fd ((loop)->port_fd)
+#define port_events ((loop)->port_events)
+#define port_eventmax ((loop)->port_eventmax)
 #define anfds ((loop)->anfds)
 #define anfdmax ((loop)->anfdmax)
 #define pendings ((loop)->pendings)