io_thread.cpp 3.28 KB
Newer Older
Martin Sustrik's avatar
Martin Sustrik committed
1
/*
2
    Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
Martin Sustrik's avatar
Martin Sustrik committed
3

4
    This file is part of libzmq, the ZeroMQ core engine in C++.
Martin Sustrik's avatar
Martin Sustrik committed
5

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

11 12 13 14 15 16 17 18 19 20 21 22 23 24
    As a special exception, the Contributors give you permission to link
    this library with independent modules to produce an executable,
    regardless of the license terms of these independent modules, and to
    copy and distribute the resulting executable under terms of your choice,
    provided that you also meet, for each linked independent module, the
    terms and conditions of the license of that module. An independent
    module is a module which is not derived from or based on this library.
    If you modify this library, you must extend this exception to your
    version of the library.

    libzmq 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 Lesser General Public
    License for more details.
Martin Sustrik's avatar
Martin Sustrik committed
25

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

30
#include "precompiled.hpp"
31

32 33
#include <new>

34
#include "macros.hpp"
Martin Sustrik's avatar
Martin Sustrik committed
35 36
#include "io_thread.hpp"
#include "err.hpp"
37
#include "ctx.hpp"
Martin Sustrik's avatar
Martin Sustrik committed
38

Martin Sustrik's avatar
Martin Sustrik committed
39
zmq::io_thread_t::io_thread_t (ctx_t *ctx_, uint32_t tid_) :
40
    object_t (ctx_, tid_),
41
    _mailbox_handle (static_cast<poller_t::handle_t> (NULL))
Martin Sustrik's avatar
Martin Sustrik committed
42
{
43 44
    _poller = new (std::nothrow) poller_t (*ctx_);
    alloc_assert (_poller);
Martin Sustrik's avatar
Martin Sustrik committed
45

46 47 48
    if (_mailbox.get_fd () != retired_fd) {
        _mailbox_handle = _poller->add_fd (_mailbox.get_fd (), this);
        _poller->set_pollin (_mailbox_handle);
49
    }
Martin Sustrik's avatar
Martin Sustrik committed
50 51
}

Martin Sustrik's avatar
Martin Sustrik committed
52
zmq::io_thread_t::~io_thread_t ()
Martin Sustrik's avatar
Martin Sustrik committed
53
{
54
    LIBZMQ_DELETE (_poller);
Martin Sustrik's avatar
Martin Sustrik committed
55 56
}

Martin Sustrik's avatar
Martin Sustrik committed
57
void zmq::io_thread_t::start ()
Martin Sustrik's avatar
Martin Sustrik committed
58
{
59
    char name[16] = "";
60
    snprintf (name, sizeof (name), "IO/%u",
61
              get_tid () - zmq::ctx_t::reaper_tid - 1);
Martin Sustrik's avatar
Martin Sustrik committed
62
    //  Start the underlying I/O thread.
63
    _poller->start (name);
Martin Sustrik's avatar
Martin Sustrik committed
64 65
}

Martin Sustrik's avatar
Martin Sustrik committed
66
void zmq::io_thread_t::stop ()
Martin Sustrik's avatar
Martin Sustrik committed
67 68 69 70
{
    send_stop ();
}

71
zmq::mailbox_t *zmq::io_thread_t::get_mailbox ()
Martin Sustrik's avatar
Martin Sustrik committed
72
{
73
    return &_mailbox;
Martin Sustrik's avatar
Martin Sustrik committed
74 75
}

Martin Sustrik's avatar
Martin Sustrik committed
76
int zmq::io_thread_t::get_load ()
Martin Sustrik's avatar
Martin Sustrik committed
77
{
78
    return _poller->get_load ();
Martin Sustrik's avatar
Martin Sustrik committed
79 80
}

Martin Sustrik's avatar
Martin Sustrik committed
81
void zmq::io_thread_t::in_event ()
Martin Sustrik's avatar
Martin Sustrik committed
82
{
83 84 85
    //  TODO: Do we want to limit number of commands I/O thread can
    //  process in a single go?

86
    command_t cmd;
87
    int rc = _mailbox.recv (&cmd, 0);
88 89 90 91

    while (rc == 0 || errno == EINTR) {
        if (rc == 0)
            cmd.destination->process_command (cmd);
92
        rc = _mailbox.recv (&cmd, 0);
Martin Sustrik's avatar
Martin Sustrik committed
93
    }
94 95

    errno_assert (rc != 0 && errno == EAGAIN);
Martin Sustrik's avatar
Martin Sustrik committed
96 97
}

Martin Sustrik's avatar
Martin Sustrik committed
98
void zmq::io_thread_t::out_event ()
Martin Sustrik's avatar
Martin Sustrik committed
99 100
{
    //  We are never polling for POLLOUT here. This function is never called.
Martin Sustrik's avatar
Martin Sustrik committed
101
    zmq_assert (false);
Martin Sustrik's avatar
Martin Sustrik committed
102 103
}

104
void zmq::io_thread_t::timer_event (int)
Martin Sustrik's avatar
Martin Sustrik committed
105 106
{
    //  No timers here. This function is never called.
Martin Sustrik's avatar
Martin Sustrik committed
107
    zmq_assert (false);
Martin Sustrik's avatar
Martin Sustrik committed
108 109
}

110
zmq::poller_t *zmq::io_thread_t::get_poller ()
Martin Sustrik's avatar
Martin Sustrik committed
111
{
112 113
    zmq_assert (_poller);
    return _poller;
Martin Sustrik's avatar
Martin Sustrik committed
114 115
}

Martin Sustrik's avatar
Martin Sustrik committed
116
void zmq::io_thread_t::process_stop ()
Martin Sustrik's avatar
Martin Sustrik committed
117
{
118 119 120
    zmq_assert (_mailbox_handle);
    _poller->rm_fd (_mailbox_handle);
    _poller->stop ();
Martin Sustrik's avatar
Martin Sustrik committed
121
}