xpub.cpp 9.13 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 27 28 29

    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 31
#include <string.h>

32 33
#include "xpub.hpp"
#include "pipe.hpp"
34 35
#include "err.hpp"
#include "msg.hpp"
36

37 38
zmq::xpub_t::xpub_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
    socket_base_t (parent_, tid_, sid_),
39 40
    verbose_subs (false),
    verbose_unsubs (false),
Martin Hurton's avatar
Martin Hurton committed
41
    more (false),
42
    lossy (true),
43
    manual(false),
44
    pending_pipes (),
45
    welcome_msg ()
46
{
47 48 49
    last_pipe = NULL;
    options.type = ZMQ_XPUB;
    welcome_msg.init();
50 51 52 53
}

zmq::xpub_t::~xpub_t ()
{
54
    welcome_msg.close();
55 56
}

57
void zmq::xpub_t::xattach_pipe (pipe_t *pipe_, bool subscribe_to_all_)
58
{
59 60
    zmq_assert (pipe_);
    dist.attach (pipe_);
61

62
    //  If subscribe_to_all_ is specified, the caller would like to subscribe
63
    //  to all data on this pipe, implicitly.
64
    if (subscribe_to_all_)
65
        subscriptions.add (NULL, 0, pipe_);
somdoron's avatar
somdoron committed
66

67 68 69 70 71 72
    // if welcome message exist
    if (welcome_msg.size() > 0)
    {
        msg_t copy;
        copy.init();
        copy.copy(welcome_msg);
somdoron's avatar
somdoron committed
73

74 75 76
        pipe_->write(&copy);
        pipe_->flush();
    }
77

78 79 80
    //  The pipe is active when attached. Let's read the subscriptions from
    //  it, if any.
    xread_activated (pipe_);
81 82 83 84
}

void zmq::xpub_t::xread_activated (pipe_t *pipe_)
{
85 86
    //  There are some subscriptions waiting. Let's process them.
    msg_t sub;
87
    while (pipe_->read (&sub)) {
88 89
        //  Apply the subscription to the trie
        unsigned char *const data = (unsigned char *) sub.data ();
90
        const size_t size = sub.size ();
91 92 93
        if (size > 0 && (*data == 0 || *data == 1)) {
            if (manual)
            {
94
                pending_pipes.push_back(pipe_);
95
                pending_data.push_back(blob_t(data, size));
96
                pending_metadata.push_back(sub.metadata());
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
                pending_flags.push_back(0);
            }
            else
            {
                bool unique;
                if (*data == 0)
                    unique = subscriptions.rm(data + 1, size - 1, pipe_);
                else
                    unique = subscriptions.add(data + 1, size - 1, pipe_);

                //  If the (un)subscription is not a duplicate store it so that it can be
                //  passed to the user on next recv call unless verbose mode is enabled
                //  which makes to pass always these messages.
                if (options.type == ZMQ_XPUB && (unique || (*data == 1 && verbose_subs) ||
                        (*data == 0 && verbose_unsubs && verbose_subs))) {
                    pending_data.push_back(blob_t(data, size));
113
                    pending_metadata.push_back(sub.metadata());
114 115 116
                    pending_flags.push_back(0);
                }
            }
117
        }
118
        else {
119
            //  Process user message coming upstream from xsub socket
120
            pending_data.push_back (blob_t (data, size));
121
            pending_metadata.push_back (sub.metadata ());
122 123
            pending_flags.push_back (sub.flags ());
        }
124
        sub.close ();
125
    }
126 127
}

128
void zmq::xpub_t::xwrite_activated (pipe_t *pipe_)
129 130 131 132
{
    dist.activated (pipe_);
}

Pieter Hintjens's avatar
Pieter Hintjens committed
133 134
int zmq::xpub_t::xsetsockopt (int option_, const void *optval_,
    size_t optvallen_)
135
{
136 137 138 139
    if (option_ == ZMQ_XPUB_VERBOSE
     || option_ == ZMQ_XPUB_VERBOSER
     || option_ == ZMQ_XPUB_NODROP
     || option_ == ZMQ_XPUB_MANUAL) {
140 141 142 143
        if (optvallen_ != sizeof(int) || *static_cast <const int*> (optval_) < 0) {
            errno = EINVAL;
            return -1;
        }
144
        if (option_ == ZMQ_XPUB_VERBOSE) {
145
            verbose_subs = (*static_cast <const int*> (optval_) != 0);
146 147
            verbose_unsubs = 0;
        }
148
        else
149 150 151 152
        if (option_ == ZMQ_XPUB_VERBOSER) {
            verbose_subs = (*static_cast <const int*> (optval_) != 0);
            verbose_unsubs = verbose_subs;
        }
153 154 155 156 157 158 159 160
        else
        if (option_ == ZMQ_XPUB_NODROP)
            lossy = (*static_cast <const int*> (optval_) == 0);
        else
        if (option_ == ZMQ_XPUB_MANUAL)
            manual = (*static_cast <const int*> (optval_) != 0);
    }
    else
161
    if (option_ == ZMQ_SUBSCRIBE && manual) {
162 163
        if (last_pipe != NULL)
            subscriptions.add ((unsigned char *)optval_, optvallen_, last_pipe);
164
    }
165
    else
166
    if (option_ == ZMQ_UNSUBSCRIBE && manual) {
167 168
        if (last_pipe != NULL)
            subscriptions.rm ((unsigned char *)optval_, optvallen_, last_pipe);
169
    }
170 171 172 173 174 175 176 177 178 179 180 181 182
    else
    if (option_ == ZMQ_XPUB_WELCOME_MSG) {
        welcome_msg.close();

        if (optvallen_ > 0) {
            welcome_msg.init_size(optvallen_);

            unsigned char *data = (unsigned char*)welcome_msg.data();
            memcpy(data, optval_, optvallen_);
        }
        else
            welcome_msg.init();
    }
183 184 185 186
    else {
        errno = EINVAL;
        return -1;
    }
Pieter Hintjens's avatar
Pieter Hintjens committed
187 188 189
    return 0;
}

190
void zmq::xpub_t::xpipe_terminated (pipe_t *pipe_)
191
{
192 193 194
    //  Remove the pipe from the trie. If there are topics that nobody
    //  is interested in anymore, send corresponding unsubscriptions
    //  upstream.
195
    subscriptions.rm (pipe_, send_unsubscription, this, !(verbose_unsubs || manual));
196

197
    dist.pipe_terminated (pipe_);
198 199
}

200 201 202 203 204 205
void zmq::xpub_t::mark_as_matching (pipe_t *pipe_, void *arg_)
{
    xpub_t *self = (xpub_t*) arg_;
    self->dist.match (pipe_);
}

206
int zmq::xpub_t::xsend (msg_t *msg_)
207
{
208
    bool msg_more = msg_->flags () & msg_t::more ? true : false;
209 210

    //  For the first part of multi-part message, find the matching pipes.
211
    if (!more) {
212 213
        subscriptions.match ((unsigned char*) msg_->data (), msg_->size (),
            mark_as_matching, this);
214 215 216 217 218
        // If inverted matching is used, reverse the selection now
        if (options.invert_matching) {
            dist.reverse_match();
        }
    }
219

220 221 222
    int rc = -1;            //  Assume we fail
    if (lossy || dist.check_hwm ()) {
        if (dist.send_to_matching (msg_) == 0) {
223
            //  If we are at the end of multi-part message we can mark
224 225 226 227 228 229
            //  all the pipes as non-matching.
            if (!msg_more)
                dist.unmatch ();
            more = msg_more;
            rc = 0;         //  Yay, sent successfully
        }
230
    }
231 232 233
    else
        errno = EAGAIN;
    return rc;
234 235 236 237
}

bool zmq::xpub_t::xhas_out ()
{
238
    return dist.has_out ();
239 240
}

241
int zmq::xpub_t::xrecv (msg_t *msg_)
242
{
Martin Hurton's avatar
Martin Hurton committed
243
    //  If there is at least one
244
    if (pending_data.empty ()) {
245 246 247
        errno = EAGAIN;
        return -1;
    }
248

249
    // User is reading a message, set last_pipe and remove it from the deque
250 251 252 253
    if (manual && !pending_pipes.empty ()) {
        last_pipe = pending_pipes.front ();
        pending_pipes.pop_front ();
    }
254

255 256
    int rc = msg_->close ();
    errno_assert (rc == 0);
257
    rc = msg_->init_size (pending_data.front ().size ());
258
    errno_assert (rc == 0);
259 260 261
    memcpy (msg_->data (),
        pending_data.front ().data (),
        pending_data.front ().size ());
262 263 264 265 266

    // set metadata only if there is some
    if (metadata_t* metadata = pending_metadata.front ()) {
        msg_->set_metadata (metadata);
    }
267

268 269
    msg_->set_flags (pending_flags.front ());
    pending_data.pop_front ();
270
    pending_metadata.pop_front ();
271
    pending_flags.pop_front ();
272
    return 0;
273 274 275 276
}

bool zmq::xpub_t::xhas_in ()
{
277
    return !pending_data.empty ();
278 279 280 281 282 283 284 285
}

void zmq::xpub_t::send_unsubscription (unsigned char *data_, size_t size_,
    void *arg_)
{
    xpub_t *self = (xpub_t*) arg_;

    if (self->options.type != ZMQ_PUB) {
286 287
        //  Place the unsubscription to the queue of pending (un)subscriptions
        //  to be retrieved by the user later on.
288 289
        blob_t unsub (size_ + 1, 0);
        unsub [0] = 0;
Martin Hurton's avatar
Martin Hurton committed
290 291
        if (size_ > 0)
            memcpy (&unsub [1], data_, size_);
292
        self->pending_data.push_back (unsub);
293
        self->pending_metadata.push_back (NULL);
294
        self->pending_flags.push_back (0);
295 296 297 298 299

        if (self->manual) {
            self->last_pipe = NULL;
            self->pending_pipes.push_back (NULL);
        }
300
    }
301
}