radio.cpp 7.87 KB
Newer Older
somdoron's avatar
somdoron committed
1
/*
2
    Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
somdoron's avatar
somdoron committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

    This file is part of libzmq, the ZeroMQ core engine in C++.

    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
    (at your option) any later version.

    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.

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

30
#include "precompiled.hpp"
somdoron's avatar
somdoron committed
31 32 33 34 35 36 37 38 39
#include <string.h>

#include "radio.hpp"
#include "macros.hpp"
#include "pipe.hpp"
#include "err.hpp"
#include "msg.hpp"

zmq::radio_t::radio_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
40 41
    socket_base_t (parent_, tid_, sid_, true),
    lossy (true)
somdoron's avatar
somdoron committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
{
    options.type = ZMQ_RADIO;
}

zmq::radio_t::~radio_t ()
{
}

void zmq::radio_t::xattach_pipe (pipe_t *pipe_, bool subscribe_to_all_)
{
    LIBZMQ_UNUSED (subscribe_to_all_);

    zmq_assert (pipe_);

    //  Don't delay pipe termination as there is no one
    //  to receive the delimiter.
    pipe_->set_nodelay ();

    dist.attach (pipe_);

62 63
    if (subscribe_to_all_)
        udp_pipes.push_back (pipe_);
somdoron's avatar
somdoron committed
64 65
    //  The pipe is active when attached. Let's read the subscriptions from
    //  it, if any.
66 67
    else
        xread_activated (pipe_);
somdoron's avatar
somdoron committed
68 69 70 71 72
}

void zmq::radio_t::xread_activated (pipe_t *pipe_)
{
    //  There are some subscriptions waiting. Let's process them.
73 74
    msg_t msg;
    while (pipe_->read (&msg)) {
somdoron's avatar
somdoron committed
75
        //  Apply the subscription to the trie
76 77
        if (msg.is_join () || msg.is_leave ()) {
            std::string group = std::string (msg.group ());
somdoron's avatar
somdoron committed
78

79
            if (msg.is_join ())
80 81
                subscriptions.ZMQ_MAP_INSERT_OR_EMPLACE (ZMQ_MOVE (group),
                                                         pipe_);
somdoron's avatar
somdoron committed
82
            else {
83 84
                std::pair<subscriptions_t::iterator, subscriptions_t::iterator>
                  range = subscriptions.equal_range (group);
somdoron's avatar
somdoron committed
85

86 87
                for (subscriptions_t::iterator it = range.first;
                     it != range.second; ++it) {
somdoron's avatar
somdoron committed
88 89 90 91 92 93 94
                    if (it->second == pipe_) {
                        subscriptions.erase (it);
                        break;
                    }
                }
            }
        }
95
        msg.close ();
somdoron's avatar
somdoron committed
96 97 98 99 100 101 102
    }
}

void zmq::radio_t::xwrite_activated (pipe_t *pipe_)
{
    dist.activated (pipe_);
}
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
int zmq::radio_t::xsetsockopt (int option_,
                               const void *optval_,
                               size_t optvallen_)
{
    if (optvallen_ != sizeof (int) || *static_cast<const int *> (optval_) < 0) {
        errno = EINVAL;
        return -1;
    }
    if (option_ == ZMQ_XPUB_NODROP)
        lossy = (*static_cast<const int *> (optval_) == 0);
    else {
        errno = EINVAL;
        return -1;
    }
    return 0;
}
somdoron's avatar
somdoron committed
119 120 121

void zmq::radio_t::xpipe_terminated (pipe_t *pipe_)
{
122 123
    //  NOTE: erase invalidates an iterator, and that's why it's not incrementing in post-loop
    //  read-after-free caught by Valgrind, see https://github.com/zeromq/libzmq/pull/1771
124 125
    for (subscriptions_t::iterator it = subscriptions.begin ();
         it != subscriptions.end ();) {
somdoron's avatar
somdoron committed
126
        if (it->second == pipe_) {
127 128 129
            subscriptions.erase (it++);
        } else {
            ++it;
somdoron's avatar
somdoron committed
130 131 132
        }
    }

133 134
    udp_pipes_t::iterator it =
      std::find (udp_pipes.begin (), udp_pipes.end (), pipe_);
135 136 137
    if (it != udp_pipes.end ())
        udp_pipes.erase (it);

somdoron's avatar
somdoron committed
138 139 140 141 142 143 144 145 146 147 148 149 150 151
    dist.pipe_terminated (pipe_);
}

int zmq::radio_t::xsend (msg_t *msg_)
{
    //  Radio sockets do not allow multipart data (ZMQ_SNDMORE)
    if (msg_->flags () & msg_t::more) {
        errno = EINVAL;
        return -1;
    }

    dist.unmatch ();

    std::pair<subscriptions_t::iterator, subscriptions_t::iterator> range =
152
      subscriptions.equal_range (std::string (msg_->group ()));
somdoron's avatar
somdoron committed
153

154
    for (subscriptions_t::iterator it = range.first; it != range.second; ++it)
155
        dist.match (it->second);
somdoron's avatar
somdoron committed
156

157 158
    for (udp_pipes_t::iterator it = udp_pipes.begin (); it != udp_pipes.end ();
         ++it)
159 160
        dist.match (*it);

161 162 163 164 165 166 167
    int rc = -1;
    if (lossy || dist.check_hwm ()) {
        if (dist.send_to_matching (msg_) == 0) {
            rc = 0; //  Yay, sent successfully
        }
    } else
        errno = EAGAIN;
somdoron's avatar
somdoron committed
168 169 170 171 172 173 174 175 176 177 178 179

    return rc;
}

bool zmq::radio_t::xhas_out ()
{
    return dist.has_out ();
}

int zmq::radio_t::xrecv (msg_t *msg_)
{
    //  Messages cannot be received from PUB socket.
180
    LIBZMQ_UNUSED (msg_);
somdoron's avatar
somdoron committed
181 182 183 184 185 186 187 188
    errno = ENOTSUP;
    return -1;
}

bool zmq::radio_t::xhas_in ()
{
    return false;
}
189

190 191 192 193 194
zmq::radio_session_t::radio_session_t (io_thread_t *io_thread_,
                                       bool connect_,
                                       socket_base_t *socket_,
                                       const options_t &options_,
                                       address_t *addr_) :
195 196 197 198 199 200 201 202 203
    session_base_t (io_thread_, connect_, socket_, options_, addr_),
    state (group)
{
}

zmq::radio_session_t::~radio_session_t ()
{
}

204 205
int zmq::radio_session_t::push_msg (msg_t *msg_)
{
206 207
    if (msg_->flags () & msg_t::command) {
        char *command_data = static_cast<char *> (msg_->data ());
208 209 210
        const size_t data_size = msg_->size ();

        int group_length;
211
        char *group;
212 213 214 215 216 217

        msg_t join_leave_msg;
        int rc;

        //  Set the msg type to either JOIN or LEAVE
        if (data_size >= 5 && memcmp (command_data, "\4JOIN", 5) == 0) {
218
            group_length = (int) data_size - 5;
219 220
            group = command_data + 5;
            rc = join_leave_msg.init_join ();
221
        } else if (data_size >= 6 && memcmp (command_data, "\5LEAVE", 6) == 0) {
222
            group_length = (int) data_size - 6;
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
            group = command_data + 6;
            rc = join_leave_msg.init_leave ();
        }
        //  If it is not a JOIN or LEAVE just push the message
        else
            return session_base_t::push_msg (msg_);

        errno_assert (rc == 0);

        //  Set the group
        rc = join_leave_msg.set_group (group, group_length);
        errno_assert (rc == 0);

        //  Close the current command
        rc = msg_->close ();
        errno_assert (rc == 0);

        //  Push the join or leave command
        *msg_ = join_leave_msg;
        return session_base_t::push_msg (msg_);
243
    } else
244 245 246
        return session_base_t::push_msg (msg_);
}

247 248 249 250 251 252 253 254
int zmq::radio_session_t::pull_msg (msg_t *msg_)
{
    if (state == group) {
        int rc = session_base_t::pull_msg (&pending_msg);
        if (rc != 0)
            return rc;

        const char *group = pending_msg.group ();
255
        int length = (int) strlen (group);
256 257

        //  First frame is the group
258
        rc = msg_->init_size (length);
259 260
        errno_assert (rc == 0);
        msg_->set_flags (msg_t::more);
261 262 263 264 265
        memcpy (msg_->data (), group, length);

        //  Next status is the body
        state = body;
        return 0;
266
    } else {
267 268 269 270 271 272 273 274 275 276 277
        *msg_ = pending_msg;
        state = group;
        return 0;
    }
}

void zmq::radio_session_t::reset ()
{
    session_base_t::reset ();
    state = group;
}