kqueue.cpp 5.19 KB
Newer Older
Martin Sustrik's avatar
Martin Sustrik committed
1
/*
2
    Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
Martin Sustrik's avatar
Martin Sustrik committed
3 4 5 6

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
7
    the terms of the GNU Lesser General Public License as published by
Martin Sustrik's avatar
Martin Sustrik committed
8 9 10 11 12 13
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    0MQ 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
14
    GNU Lesser General Public License for more details.
Martin Sustrik's avatar
Martin Sustrik committed
15

16
    You should have received a copy of the GNU Lesser General Public License
Martin Sustrik's avatar
Martin Sustrik committed
17 18 19
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

20 21
#include "kqueue.hpp"
#if defined ZMQ_USE_KQUEUE
Martin Sustrik's avatar
Martin Sustrik committed
22 23 24 25 26 27 28

#include <sys/time.h>
#include <sys/types.h>
#include <sys/event.h>
#include <stdlib.h>
#include <unistd.h>
#include <algorithm>
29
#include <new>
Martin Sustrik's avatar
Martin Sustrik committed
30 31 32 33 34

#include "kqueue.hpp"
#include "err.hpp"
#include "config.hpp"
#include "i_poll_events.hpp"
35
#include "likely.hpp"
Martin Sustrik's avatar
Martin Sustrik committed
36

Martin Lucina's avatar
Martin Lucina committed
37 38 39 40 41 42 43 44
//  NetBSD defines (struct kevent).udata as intptr_t, everyone else
//  as void *.
#if defined ZMQ_HAVE_NETBSD
#define kevent_udata_t intptr_t
#else
#define kevent_udata_t void *
#endif

45 46
zmq::kqueue_t::kqueue_t () :
    stopping (false)
Martin Sustrik's avatar
Martin Sustrik committed
47 48 49 50
{
    //  Create event queue
    kqueue_fd = kqueue ();
    errno_assert (kqueue_fd != -1);
51 52 53
#ifdef HAVE_FORK
    pid = getpid();
#endif
Martin Sustrik's avatar
Martin Sustrik committed
54 55
}

Martin Sustrik's avatar
Martin Sustrik committed
56
zmq::kqueue_t::~kqueue_t ()
Martin Sustrik's avatar
Martin Sustrik committed
57
{
58
    worker.stop ();
Martin Sustrik's avatar
Martin Sustrik committed
59 60 61
    close (kqueue_fd);
}

Martin Sustrik's avatar
Martin Sustrik committed
62
void zmq::kqueue_t::kevent_add (fd_t fd_, short filter_, void *udata_)
Martin Sustrik's avatar
Martin Sustrik committed
63 64 65
{
    struct kevent ev;

Martin Lucina's avatar
Martin Lucina committed
66
    EV_SET (&ev, fd_, filter_, EV_ADD, 0, 0, (kevent_udata_t)udata_);
Martin Sustrik's avatar
Martin Sustrik committed
67 68 69 70
    int rc = kevent (kqueue_fd, &ev, 1, NULL, 0, NULL);
    errno_assert (rc != -1);
}

Martin Sustrik's avatar
Martin Sustrik committed
71
void zmq::kqueue_t::kevent_delete (fd_t fd_, short filter_)
Martin Sustrik's avatar
Martin Sustrik committed
72 73 74
{
    struct kevent ev;

75
    EV_SET (&ev, fd_, filter_, EV_DELETE, 0, 0, 0);
Martin Sustrik's avatar
Martin Sustrik committed
76 77 78 79
    int rc = kevent (kqueue_fd, &ev, 1, NULL, 0, NULL);
    errno_assert (rc != -1);
}

80 81
zmq::kqueue_t::handle_t zmq::kqueue_t::add_fd (fd_t fd_,
    i_poll_events *reactor_)
Martin Sustrik's avatar
Martin Sustrik committed
82
{
83
    poll_entry_t *pe = new (std::nothrow) poll_entry_t;
84
    alloc_assert (pe);
Martin Sustrik's avatar
Martin Sustrik committed
85 86 87 88 89 90

    pe->fd = fd_;
    pe->flag_pollin = 0;
    pe->flag_pollout = 0;
    pe->reactor = reactor_;

91 92
    adjust_load (1);

93
    return pe;
Martin Sustrik's avatar
Martin Sustrik committed
94 95
}

Martin Sustrik's avatar
Martin Sustrik committed
96
void zmq::kqueue_t::rm_fd (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
97
{
98
    poll_entry_t *pe = (poll_entry_t*) handle_;
Martin Sustrik's avatar
Martin Sustrik committed
99 100 101 102 103 104
    if (pe->flag_pollin)
        kevent_delete (pe->fd, EVFILT_READ);
    if (pe->flag_pollout)
        kevent_delete (pe->fd, EVFILT_WRITE);
    pe->fd = retired_fd;
    retired.push_back (pe);
105 106

    adjust_load (-1);
Martin Sustrik's avatar
Martin Sustrik committed
107 108
}

Martin Sustrik's avatar
Martin Sustrik committed
109
void zmq::kqueue_t::set_pollin (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
110
{
111
    poll_entry_t *pe = (poll_entry_t*) handle_;
112 113 114 115
    if (likely (!pe->flag_pollin)) {
        pe->flag_pollin = true;
        kevent_add (pe->fd, EVFILT_READ, pe);
    }
Martin Sustrik's avatar
Martin Sustrik committed
116 117
}

Martin Sustrik's avatar
Martin Sustrik committed
118
void zmq::kqueue_t::reset_pollin (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
119
{
120
    poll_entry_t *pe = (poll_entry_t*) handle_;
121 122 123 124
    if (likely (pe->flag_pollin)) {
        pe->flag_pollin = false;
        kevent_delete (pe->fd, EVFILT_READ);
    }
Martin Sustrik's avatar
Martin Sustrik committed
125 126
}

Martin Sustrik's avatar
Martin Sustrik committed
127
void zmq::kqueue_t::set_pollout (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
128
{
129
    poll_entry_t *pe = (poll_entry_t*) handle_;
130 131 132 133
    if (likely (!pe->flag_pollout)) {
        pe->flag_pollout = true;
        kevent_add (pe->fd, EVFILT_WRITE, pe);
    }
Martin Sustrik's avatar
Martin Sustrik committed
134 135
}

Martin Sustrik's avatar
Martin Sustrik committed
136
void zmq::kqueue_t::reset_pollout (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
137
{
138
    poll_entry_t *pe = (poll_entry_t*) handle_;
139 140 141 142
    if (likely (pe->flag_pollout)) {
        pe->flag_pollout = false;
        kevent_delete (pe->fd, EVFILT_WRITE);
   }
Martin Sustrik's avatar
Martin Sustrik committed
143 144
}

Martin Sustrik's avatar
Martin Sustrik committed
145
void zmq::kqueue_t::start ()
Martin Sustrik's avatar
Martin Sustrik committed
146 147 148 149
{
    worker.start (worker_routine, this);
}

Martin Sustrik's avatar
Martin Sustrik committed
150
void zmq::kqueue_t::stop ()
Martin Sustrik's avatar
Martin Sustrik committed
151 152 153 154
{
    stopping = true;
}

Richard Newton's avatar
Richard Newton committed
155
int zmq::kqueue_t::max_fds ()
156 157 158 159
{
    return -1;
}

Martin Sustrik's avatar
Martin Sustrik committed
160
void zmq::kqueue_t::loop ()
Martin Sustrik's avatar
Martin Sustrik committed
161 162 163
{
    while (!stopping) {

164
        //  Execute any due timers.
165
        int timeout = (int) execute_timers ();
Martin Sustrik's avatar
Martin Sustrik committed
166 167

        //  Wait for events.
168 169 170 171
        struct kevent ev_buf [max_io_events];
        timespec ts = {timeout / 1000, (timeout % 1000) * 1000000};
        int n = kevent (kqueue_fd, NULL, 0, &ev_buf [0], max_io_events,
            timeout ? &ts: NULL);
172 173 174 175 176 177 178
#ifdef HAVE_FORK
        if (unlikely(pid != getpid())) {
            //printf("zmq::kqueue_t::loop aborting on forked child %d\n", (int)getpid());
            // simply exit the loop in a forked process.
            return;
        }
#endif
Martin Hurton's avatar
Martin Hurton committed
179 180
        if (n == -1) {
            errno_assert (errno == EINTR);
Martin Sustrik's avatar
Martin Sustrik committed
181
            continue;
Martin Hurton's avatar
Martin Hurton committed
182
        }
Martin Sustrik's avatar
Martin Sustrik committed
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

        for (int i = 0; i < n; i ++) {
            poll_entry_t *pe = (poll_entry_t*) ev_buf [i].udata;

            if (pe->fd == retired_fd)
                continue;
            if (ev_buf [i].flags & EV_EOF)
                pe->reactor->in_event ();
            if (pe->fd == retired_fd)
                continue;
            if (ev_buf [i].filter == EVFILT_WRITE)
                pe->reactor->out_event ();
            if (pe->fd == retired_fd)
                continue;
            if (ev_buf [i].filter == EVFILT_READ)
                pe->reactor->in_event ();
        }

        //  Destroy retired event sources.
        for (retired_t::iterator it = retired.begin (); it != retired.end ();
203
              ++it)
Martin Sustrik's avatar
Martin Sustrik committed
204 205 206 207 208
            delete *it;
        retired.clear ();
    }
}

Martin Sustrik's avatar
Martin Sustrik committed
209
void zmq::kqueue_t::worker_routine (void *arg_)
Martin Sustrik's avatar
Martin Sustrik committed
210 211 212 213 214
{
    ((kqueue_t*) arg_)->loop ();
}

#endif