kqueue.cpp 5.29 KB
Newer Older
Martin Sustrik's avatar
Martin Sustrik committed
1
/*
2
    Copyright (c) 2007-2010 iMatix Corporation
Martin Sustrik's avatar
Martin Sustrik committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
    the terms of the Lesser GNU General Public License as published by
    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
    Lesser GNU General Public License for more details.

    You should have received a copy of the Lesser GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "platform.hpp"

Martin Sustrik's avatar
Martin Sustrik committed
22
#if defined ZMQ_HAVE_FREEBSD || defined ZMQ_HAVE_OPENBSD || defined ZMQ_HAVE_OSX
Martin Sustrik's avatar
Martin Sustrik committed
23 24 25 26 27 28 29

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

#include "kqueue.hpp"
#include "err.hpp"
#include "config.hpp"
#include "i_poll_events.hpp"

37 38
zmq::kqueue_t::kqueue_t () :
    stopping (false)
Martin Sustrik's avatar
Martin Sustrik committed
39 40 41 42 43 44
{
    //  Create event queue
    kqueue_fd = kqueue ();
    errno_assert (kqueue_fd != -1);
}

Martin Sustrik's avatar
Martin Sustrik committed
45
zmq::kqueue_t::~kqueue_t ()
Martin Sustrik's avatar
Martin Sustrik committed
46
{
47 48
    worker.stop ();

49 50 51
    //  Make sure there are no fds registered on shutdown.
    zmq_assert (load.get () == 0);

Martin Sustrik's avatar
Martin Sustrik committed
52 53 54
    close (kqueue_fd);
}

Martin Sustrik's avatar
Martin Sustrik committed
55
void zmq::kqueue_t::kevent_add (fd_t fd_, short filter_, void *udata_)
Martin Sustrik's avatar
Martin Sustrik committed
56 57 58 59 60 61 62 63
{
    struct kevent ev;

    EV_SET (&ev, fd_, filter_, EV_ADD, 0, 0, udata_);
    int rc = kevent (kqueue_fd, &ev, 1, NULL, 0, NULL);
    errno_assert (rc != -1);
}

Martin Sustrik's avatar
Martin Sustrik committed
64
void zmq::kqueue_t::kevent_delete (fd_t fd_, short filter_)
Martin Sustrik's avatar
Martin Sustrik committed
65 66 67 68 69 70 71 72
{
    struct kevent ev;

    EV_SET (&ev, fd_, filter_, EV_DELETE, 0, 0, NULL);
    int rc = kevent (kqueue_fd, &ev, 1, NULL, 0, NULL);
    errno_assert (rc != -1);
}

73 74
zmq::kqueue_t::handle_t zmq::kqueue_t::add_fd (fd_t fd_,
    i_poll_events *reactor_)
Martin Sustrik's avatar
Martin Sustrik committed
75
{
76
    poll_entry_t *pe = new (std::nothrow) poll_entry_t;
Martin Sustrik's avatar
Martin Sustrik committed
77
    zmq_assert (pe != NULL);
Martin Sustrik's avatar
Martin Sustrik committed
78 79 80 81 82 83

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

84
    return pe;
Martin Sustrik's avatar
Martin Sustrik committed
85 86
}

Martin Sustrik's avatar
Martin Sustrik committed
87
void zmq::kqueue_t::rm_fd (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
88
{
89
    poll_entry_t *pe = (poll_entry_t*) handle_;
Martin Sustrik's avatar
Martin Sustrik committed
90 91 92 93 94 95 96 97
    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);
}

Martin Sustrik's avatar
Martin Sustrik committed
98
void zmq::kqueue_t::set_pollin (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
99
{
100
    poll_entry_t *pe = (poll_entry_t*) handle_;
Martin Sustrik's avatar
Martin Sustrik committed
101 102 103 104
    pe->flag_pollin = true;
    kevent_add (pe->fd, EVFILT_READ, pe);
}

Martin Sustrik's avatar
Martin Sustrik committed
105
void zmq::kqueue_t::reset_pollin (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
106
{
107
    poll_entry_t *pe = (poll_entry_t*) handle_;
Martin Sustrik's avatar
Martin Sustrik committed
108 109 110 111
    pe->flag_pollin = false;
    kevent_delete (pe->fd, EVFILT_READ);
}

Martin Sustrik's avatar
Martin Sustrik committed
112
void zmq::kqueue_t::set_pollout (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
113
{
114
    poll_entry_t *pe = (poll_entry_t*) handle_;
Martin Sustrik's avatar
Martin Sustrik committed
115 116 117 118
    pe->flag_pollout = true;
    kevent_add (pe->fd, EVFILT_WRITE, pe);
}

Martin Sustrik's avatar
Martin Sustrik committed
119
void zmq::kqueue_t::reset_pollout (handle_t handle_)
Martin Sustrik's avatar
Martin Sustrik committed
120
{
121
    poll_entry_t *pe = (poll_entry_t*) handle_;
Martin Sustrik's avatar
Martin Sustrik committed
122 123 124 125
    pe->flag_pollout = false;
    kevent_delete (pe->fd, EVFILT_WRITE);
}

Martin Sustrik's avatar
Martin Sustrik committed
126
void zmq::kqueue_t::add_timer (i_poll_events *events_)
Martin Sustrik's avatar
Martin Sustrik committed
127 128 129 130
{
     timers.push_back (events_);
}

Martin Sustrik's avatar
Martin Sustrik committed
131
void zmq::kqueue_t::cancel_timer (i_poll_events *events_)
Martin Sustrik's avatar
Martin Sustrik committed
132 133 134 135 136 137
{
    timers_t::iterator it = std::find (timers.begin (), timers.end (), events_);
    if (it != timers.end ())
        timers.erase (it);
}

Martin Sustrik's avatar
Martin Sustrik committed
138
int zmq::kqueue_t::get_load ()
Martin Sustrik's avatar
Martin Sustrik committed
139 140 141 142
{
    return load.get ();
}

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

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

Martin Sustrik's avatar
Martin Sustrik committed
153
void zmq::kqueue_t::loop ()
Martin Sustrik's avatar
Martin Sustrik committed
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
{
    while (!stopping) {

        struct kevent ev_buf [max_io_events];

        //  Compute time interval to wait.
        timespec timeout = {max_timer_period / 1000,
            (max_timer_period % 1000) * 1000000};

        //  Wait for events.
        int n = kevent (kqueue_fd, NULL, 0,
             &ev_buf [0], max_io_events, timers.empty () ? NULL : &timeout);
        if (n == -1 && errno == EINTR)
            continue;
        errno_assert (n != -1);

        //  Handle timer.
        if (!n) {

            //  Use local list of timers as timer handlers may fill new timers
            //  into the original array.
            timers_t t;
            std::swap (timers, t);

            //  Trigger all the timers.
            for (timers_t::iterator it = t.begin (); it != t.end (); it ++)
                (*it)->timer_event ();

            continue;
        }

        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 ();
              it ++)
            delete *it;
        retired.clear ();
    }
}

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

#endif