poller_base.cpp 4.14 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
3

4
    This file is part of libzmq, the ZeroMQ core engine in C++.
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
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.
25

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

30
#include "precompiled.hpp"
31
#include "poller_base.hpp"
32
#include "i_poll_events.hpp"
33 34 35 36 37 38 39 40
#include "err.hpp"

zmq::poller_base_t::poller_base_t ()
{
}

zmq::poller_base_t::~poller_base_t ()
{
41
    //  Make sure there is no more load on the shutdown.
42 43 44
    zmq_assert (get_load () == 0);
}

45
int zmq::poller_base_t::get_load () const
46
{
47
    return _load.get ();
48 49 50 51 52
}

void zmq::poller_base_t::adjust_load (int amount_)
{
    if (amount_ > 0)
53
        _load.add (amount_);
54
    else if (amount_ < 0)
55
        _load.sub (-amount_);
56
}
57 58 59

void zmq::poller_base_t::add_timer (int timeout_, i_poll_events *sink_, int id_)
{
60
    uint64_t expiration = _clock.now_ms () + timeout_;
61
    timer_info_t info = {sink_, id_};
62
    _timers.insert (timers_t::value_type (expiration, info));
63 64 65 66 67
}

void zmq::poller_base_t::cancel_timer (i_poll_events *sink_, int id_)
{
    //  Complexity of this operation is O(n). We assume it is rarely used.
68 69
    for (timers_t::iterator it = _timers.begin (), end = _timers.end ();
         it != end; ++it)
70
        if (it->second.sink == sink_ && it->second.id == id_) {
71
            _timers.erase (it);
72 73 74 75 76 77 78 79 80
            return;
        }

    //  Timer not found.
    zmq_assert (false);
}

uint64_t zmq::poller_base_t::execute_timers ()
{
81
    //  Fast track.
82
    if (_timers.empty ())
83 84
        return 0;

85
    //  Get the current time.
86
    const uint64_t current = _clock.now_ms ();
87 88

    //   Execute the timers that are already due.
89 90 91 92 93
    const timers_t::iterator begin = _timers.begin ();
    const timers_t::iterator end = _timers.end ();
    uint64_t res = 0;
    timers_t::iterator it = begin;
    for (; it != end; ++it) {
94 95
        //  If we have to wait to execute the item, same will be true about
        //  all the following items (multimap is sorted). Thus we can stop
96 97 98 99 100
        //  checking the subsequent timers.
        if (it->first > current) {
            res = it->first - current;
            break;
        }
101 102 103 104 105

        //  Trigger the timer.
        it->second.sink->timer_event (it->second.id);
    }

106 107 108 109 110 111
    //  Remove them from the list of active timers.
    _timers.erase (begin, it);

    //  Return the time to wait for the next timer (at least 1ms), or 0, if
    //  there are no more timers.
    return res;
112
}
113 114

zmq::worker_poller_base_t::worker_poller_base_t (const thread_ctx_t &ctx_) :
115
    _ctx (ctx_)
116 117 118 119 120
{
}

void zmq::worker_poller_base_t::stop_worker ()
{
121
    _worker.stop ();
122 123
}

124
void zmq::worker_poller_base_t::start (const char *name_)
125 126
{
    zmq_assert (get_load () > 0);
127
    _ctx.start_thread (_worker, worker_routine, this, name_);
128 129 130 131 132
}

void zmq::worker_poller_base_t::check_thread ()
{
#ifdef _DEBUG
133
    zmq_assert (!_worker.get_started () || _worker.is_current_thread ());
134 135 136 137 138
#endif
}

void zmq::worker_poller_base_t::worker_routine (void *arg_)
{
139
    (static_cast<worker_poller_base_t *> (arg_))->loop ();
140
}