2010-12-04 23:14:38 +01:00
|
|
|
/*
|
2016-01-28 15:07:31 +01:00
|
|
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
2010-12-04 23:14:38 +01:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
2010-12-04 23:14:38 +01:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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
|
2010-12-04 23:14:38 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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.
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2016-02-18 10:56:52 -06:00
|
|
|
#include "precompiled.hpp"
|
2011-05-30 10:07:34 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2010-12-04 23:14:38 +01:00
|
|
|
#include "xpub.hpp"
|
|
|
|
#include "pipe.hpp"
|
2011-04-21 22:27:48 +02:00
|
|
|
#include "err.hpp"
|
|
|
|
#include "msg.hpp"
|
2017-06-22 00:59:38 +01:00
|
|
|
#include "macros.hpp"
|
2018-02-21 12:06:23 +01:00
|
|
|
#include "generic_mtrie_impl.hpp"
|
2010-12-04 23:14:38 +01:00
|
|
|
|
2012-03-19 19:41:20 -05:00
|
|
|
zmq::xpub_t::xpub_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
|
|
|
|
socket_base_t (parent_, tid_, sid_),
|
2015-07-21 23:35:50 +01:00
|
|
|
verbose_subs (false),
|
|
|
|
verbose_unsubs (false),
|
2014-09-11 16:00:48 +02:00
|
|
|
more (false),
|
2014-11-26 10:38:54 +02:00
|
|
|
lossy (true),
|
2017-03-30 14:45:40 -07:00
|
|
|
manual (false),
|
2015-09-05 14:59:52 +02:00
|
|
|
pending_pipes (),
|
2015-08-20 07:46:34 -07:00
|
|
|
welcome_msg ()
|
2010-12-04 23:14:38 +01:00
|
|
|
{
|
2015-08-20 07:46:34 -07:00
|
|
|
last_pipe = NULL;
|
|
|
|
options.type = ZMQ_XPUB;
|
2017-03-30 14:45:40 -07:00
|
|
|
welcome_msg.init ();
|
2010-12-04 23:14:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
zmq::xpub_t::~xpub_t ()
|
|
|
|
{
|
2017-03-30 14:45:40 -07:00
|
|
|
welcome_msg.close ();
|
2010-12-04 23:14:38 +01:00
|
|
|
}
|
|
|
|
|
2013-08-31 09:53:47 -04:00
|
|
|
void zmq::xpub_t::xattach_pipe (pipe_t *pipe_, bool subscribe_to_all_)
|
2010-12-04 23:14:38 +01:00
|
|
|
{
|
2011-05-22 17:26:53 +02:00
|
|
|
zmq_assert (pipe_);
|
|
|
|
dist.attach (pipe_);
|
2015-08-20 07:46:34 -07:00
|
|
|
|
2013-08-31 09:53:47 -04:00
|
|
|
// If subscribe_to_all_ is specified, the caller would like to subscribe
|
2012-02-02 13:07:48 +01:00
|
|
|
// to all data on this pipe, implicitly.
|
2013-08-31 09:53:47 -04:00
|
|
|
if (subscribe_to_all_)
|
2015-08-20 07:46:34 -07:00
|
|
|
subscriptions.add (NULL, 0, pipe_);
|
2014-11-26 13:37:36 +02:00
|
|
|
|
2017-03-30 14:45:40 -07:00
|
|
|
// if welcome message exists, send a copy of it
|
2018-02-01 11:46:09 +01:00
|
|
|
if (welcome_msg.size () > 0) {
|
2015-08-20 07:46:34 -07:00
|
|
|
msg_t copy;
|
2017-03-30 14:45:40 -07:00
|
|
|
copy.init ();
|
|
|
|
int rc = copy.copy (welcome_msg);
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
bool ok = pipe_->write (©);
|
|
|
|
zmq_assert (ok);
|
|
|
|
pipe_->flush ();
|
2015-08-20 07:46:34 -07:00
|
|
|
}
|
2012-02-02 13:07:48 +01:00
|
|
|
|
2011-05-31 16:21:17 +02:00
|
|
|
// The pipe is active when attached. Let's read the subscriptions from
|
|
|
|
// it, if any.
|
|
|
|
xread_activated (pipe_);
|
2011-05-30 10:07:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::xpub_t::xread_activated (pipe_t *pipe_)
|
|
|
|
{
|
2011-05-31 16:21:17 +02:00
|
|
|
// There are some subscriptions waiting. Let's process them.
|
|
|
|
msg_t sub;
|
2012-06-26 01:56:54 +02:00
|
|
|
while (pipe_->read (&sub)) {
|
2013-04-18 17:23:57 +02:00
|
|
|
// Apply the subscription to the trie
|
|
|
|
unsigned char *const data = (unsigned char *) sub.data ();
|
2012-06-26 01:56:54 +02:00
|
|
|
const size_t size = sub.size ();
|
2018-02-01 11:46:09 +01:00
|
|
|
metadata_t *metadata = sub.metadata ();
|
2015-08-20 07:46:34 -07:00
|
|
|
if (size > 0 && (*data == 0 || *data == 1)) {
|
2018-02-01 11:46:09 +01:00
|
|
|
if (manual) {
|
2016-06-17 11:40:17 +01:00
|
|
|
// Store manual subscription to use on termination
|
|
|
|
if (*data == 0)
|
2017-03-30 14:45:40 -07:00
|
|
|
manual_subscriptions.rm (data + 1, size - 1, pipe_);
|
2016-06-17 11:40:17 +01:00
|
|
|
else
|
2017-03-30 14:45:40 -07:00
|
|
|
manual_subscriptions.add (data + 1, size - 1, pipe_);
|
2016-06-17 11:40:17 +01:00
|
|
|
|
2017-03-30 14:45:40 -07:00
|
|
|
pending_pipes.push_back (pipe_);
|
|
|
|
pending_data.push_back (blob_t (data, size));
|
2016-10-29 12:21:35 -07:00
|
|
|
if (metadata)
|
2017-03-30 14:45:40 -07:00
|
|
|
metadata->add_ref ();
|
|
|
|
pending_metadata.push_back (metadata);
|
|
|
|
pending_flags.push_back (0);
|
2018-02-01 11:46:09 +01:00
|
|
|
} else {
|
2015-08-20 07:46:34 -07:00
|
|
|
bool unique;
|
|
|
|
if (*data == 0)
|
2017-03-30 14:45:40 -07:00
|
|
|
unique = subscriptions.rm (data + 1, size - 1, pipe_);
|
2015-08-20 07:46:34 -07:00
|
|
|
else
|
2017-03-30 14:45:40 -07:00
|
|
|
unique = subscriptions.add (data + 1, size - 1, pipe_);
|
2015-08-20 07:46:34 -07:00
|
|
|
|
|
|
|
// 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.
|
2018-02-01 11:46:09 +01:00
|
|
|
if (options.type == ZMQ_XPUB
|
|
|
|
&& (unique || (*data == 1 && verbose_subs)
|
|
|
|
|| (*data == 0 && verbose_unsubs && verbose_subs))) {
|
|
|
|
pending_data.push_back (blob_t (data, size));
|
2016-10-29 12:21:35 -07:00
|
|
|
if (metadata)
|
2017-03-30 14:45:40 -07:00
|
|
|
metadata->add_ref ();
|
|
|
|
pending_metadata.push_back (metadata);
|
|
|
|
pending_flags.push_back (0);
|
2015-08-20 07:46:34 -07:00
|
|
|
}
|
|
|
|
}
|
2018-02-01 11:46:09 +01:00
|
|
|
} else {
|
2013-01-08 09:16:50 +01:00
|
|
|
// Process user message coming upstream from xsub socket
|
2013-04-18 17:23:57 +02:00
|
|
|
pending_data.push_back (blob_t (data, size));
|
2016-10-29 12:21:35 -07:00
|
|
|
if (metadata)
|
2017-03-30 14:45:40 -07:00
|
|
|
metadata->add_ref ();
|
2016-10-29 12:21:35 -07:00
|
|
|
pending_metadata.push_back (metadata);
|
2013-04-18 17:23:57 +02:00
|
|
|
pending_flags.push_back (sub.flags ());
|
|
|
|
}
|
2012-06-26 01:56:54 +02:00
|
|
|
sub.close ();
|
2011-05-31 16:21:17 +02:00
|
|
|
}
|
2011-05-22 17:26:53 +02:00
|
|
|
}
|
|
|
|
|
2011-05-23 20:30:01 +02:00
|
|
|
void zmq::xpub_t::xwrite_activated (pipe_t *pipe_)
|
2011-05-22 17:26:53 +02:00
|
|
|
{
|
|
|
|
dist.activated (pipe_);
|
|
|
|
}
|
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int zmq::xpub_t::xsetsockopt (int option_,
|
|
|
|
const void *optval_,
|
|
|
|
size_t optvallen_)
|
2015-08-20 07:46:34 -07:00
|
|
|
{
|
2018-02-01 11:46:09 +01:00
|
|
|
if (option_ == ZMQ_XPUB_VERBOSE || option_ == ZMQ_XPUB_VERBOSER
|
|
|
|
|| option_ == ZMQ_XPUB_NODROP || option_ == ZMQ_XPUB_MANUAL) {
|
|
|
|
if (optvallen_ != sizeof (int)
|
|
|
|
|| *static_cast<const int *> (optval_) < 0) {
|
2015-08-20 07:46:34 -07:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
2016-02-09 09:53:41 +01:00
|
|
|
if (option_ == ZMQ_XPUB_VERBOSE) {
|
2018-02-01 11:46:09 +01:00
|
|
|
verbose_subs = (*static_cast<const int *> (optval_) != 0);
|
2016-02-09 09:53:41 +01:00
|
|
|
verbose_unsubs = 0;
|
2018-02-01 11:46:09 +01:00
|
|
|
} else if (option_ == ZMQ_XPUB_VERBOSER) {
|
|
|
|
verbose_subs = (*static_cast<const int *> (optval_) != 0);
|
2016-02-09 09:53:41 +01:00
|
|
|
verbose_unsubs = verbose_subs;
|
2018-02-01 11:46:09 +01:00
|
|
|
} 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 if (option_ == ZMQ_SUBSCRIBE && manual) {
|
2016-02-09 09:53:41 +01:00
|
|
|
if (last_pipe != NULL)
|
2018-02-01 11:46:09 +01:00
|
|
|
subscriptions.add ((unsigned char *) optval_, optvallen_,
|
|
|
|
last_pipe);
|
|
|
|
} else if (option_ == ZMQ_UNSUBSCRIBE && manual) {
|
2016-02-09 09:53:41 +01:00
|
|
|
if (last_pipe != NULL)
|
2017-03-30 14:45:40 -07:00
|
|
|
subscriptions.rm ((unsigned char *) optval_, optvallen_, last_pipe);
|
2018-02-01 11:46:09 +01:00
|
|
|
} else if (option_ == ZMQ_XPUB_WELCOME_MSG) {
|
2017-03-30 14:45:40 -07:00
|
|
|
welcome_msg.close ();
|
2015-08-20 07:46:34 -07:00
|
|
|
|
|
|
|
if (optvallen_ > 0) {
|
2017-03-30 14:45:40 -07:00
|
|
|
int rc = welcome_msg.init_size (optvallen_);
|
2018-02-01 11:46:09 +01:00
|
|
|
errno_assert (rc == 0);
|
2015-08-20 07:46:34 -07:00
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
unsigned char *data = (unsigned char *) welcome_msg.data ();
|
2017-03-30 14:45:40 -07:00
|
|
|
memcpy (data, optval_, optvallen_);
|
2018-02-01 11:46:09 +01:00
|
|
|
} else
|
2017-03-30 14:45:40 -07:00
|
|
|
welcome_msg.init ();
|
2018-02-01 11:46:09 +01:00
|
|
|
} else {
|
2014-08-27 12:04:51 +02:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
2012-10-08 00:57:43 +09:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-15 12:32:10 +01:00
|
|
|
static void stub (zmq::mtrie_t::prefix_t data_, size_t size_, void *arg_)
|
2017-06-22 00:59:38 +01:00
|
|
|
{
|
2018-02-01 11:46:09 +01:00
|
|
|
LIBZMQ_UNUSED (data_);
|
|
|
|
LIBZMQ_UNUSED (size_);
|
|
|
|
LIBZMQ_UNUSED (arg_);
|
2017-06-22 00:59:38 +01:00
|
|
|
}
|
|
|
|
|
2013-05-28 16:49:24 +02:00
|
|
|
void zmq::xpub_t::xpipe_terminated (pipe_t *pipe_)
|
2011-05-22 17:26:53 +02:00
|
|
|
{
|
2018-02-01 11:46:09 +01:00
|
|
|
if (manual) {
|
2016-06-17 11:40:17 +01:00
|
|
|
// Remove the pipe from the trie and send corresponding manual
|
|
|
|
// unsubscriptions upstream.
|
|
|
|
manual_subscriptions.rm (pipe_, send_unsubscription, this, false);
|
2017-06-22 00:59:38 +01:00
|
|
|
// Remove pipe without actually sending the message as it was taken
|
|
|
|
// care of by the manual call above. subscriptions is the real mtrie,
|
|
|
|
// so the pipe must be removed from there or it will be left over.
|
2018-02-21 12:06:23 +01:00
|
|
|
subscriptions.rm (pipe_, stub, (void *) NULL, false);
|
2018-02-01 11:46:09 +01:00
|
|
|
} else {
|
2016-06-17 11:40:17 +01:00
|
|
|
// Remove the pipe from the trie. If there are topics that nobody
|
|
|
|
// is interested in anymore, send corresponding unsubscriptions
|
|
|
|
// upstream.
|
|
|
|
subscriptions.rm (pipe_, send_unsubscription, this, !verbose_unsubs);
|
|
|
|
}
|
2011-05-30 10:07:34 +02:00
|
|
|
|
2013-05-28 16:49:24 +02:00
|
|
|
dist.pipe_terminated (pipe_);
|
2010-12-04 23:14:38 +01:00
|
|
|
}
|
|
|
|
|
2018-02-21 12:06:23 +01:00
|
|
|
void zmq::xpub_t::mark_as_matching (pipe_t *pipe_, xpub_t *self_)
|
2011-06-11 20:29:56 +02:00
|
|
|
{
|
2018-02-21 12:06:23 +01:00
|
|
|
self_->dist.match (pipe_);
|
2011-06-11 20:29:56 +02:00
|
|
|
}
|
|
|
|
|
2012-11-09 17:08:03 +01:00
|
|
|
int zmq::xpub_t::xsend (msg_t *msg_)
|
2011-06-11 20:29:56 +02:00
|
|
|
{
|
2011-11-01 13:39:54 +01:00
|
|
|
bool msg_more = msg_->flags () & msg_t::more ? true : false;
|
2011-06-12 10:19:21 +02:00
|
|
|
|
|
|
|
// For the first part of multi-part message, find the matching pipes.
|
2015-01-26 15:59:19 +01:00
|
|
|
if (!more) {
|
2018-02-01 11:46:09 +01:00
|
|
|
subscriptions.match ((unsigned char *) msg_->data (), msg_->size (),
|
|
|
|
mark_as_matching, this);
|
2015-01-26 15:59:19 +01:00
|
|
|
// If inverted matching is used, reverse the selection now
|
|
|
|
if (options.invert_matching) {
|
2018-02-01 11:46:09 +01:00
|
|
|
dist.reverse_match ();
|
2015-01-26 15:59:19 +01:00
|
|
|
}
|
|
|
|
}
|
2011-06-11 20:29:56 +02:00
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int rc = -1; // Assume we fail
|
2014-08-27 13:48:47 +02:00
|
|
|
if (lossy || dist.check_hwm ()) {
|
|
|
|
if (dist.send_to_matching (msg_) == 0) {
|
2015-08-20 07:46:34 -07:00
|
|
|
// If we are at the end of multi-part message we can mark
|
2014-08-27 13:48:47 +02:00
|
|
|
// all the pipes as non-matching.
|
|
|
|
if (!msg_more)
|
|
|
|
dist.unmatch ();
|
|
|
|
more = msg_more;
|
2018-02-01 11:46:09 +01:00
|
|
|
rc = 0; // Yay, sent successfully
|
2014-08-27 13:48:47 +02:00
|
|
|
}
|
2018-02-01 11:46:09 +01:00
|
|
|
} else
|
2014-08-27 13:48:47 +02:00
|
|
|
errno = EAGAIN;
|
|
|
|
return rc;
|
2010-12-04 23:14:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool zmq::xpub_t::xhas_out ()
|
|
|
|
{
|
2011-01-14 12:05:10 +01:00
|
|
|
return dist.has_out ();
|
2010-12-04 23:14:38 +01:00
|
|
|
}
|
|
|
|
|
2012-11-09 17:17:43 +01:00
|
|
|
int zmq::xpub_t::xrecv (msg_t *msg_)
|
2011-01-14 12:38:07 +01:00
|
|
|
{
|
2014-08-12 09:31:19 +02:00
|
|
|
// If there is at least one
|
2013-04-18 17:23:57 +02:00
|
|
|
if (pending_data.empty ()) {
|
2011-05-30 10:07:34 +02:00
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
|
|
|
}
|
2011-05-31 16:21:17 +02:00
|
|
|
|
2015-09-05 14:59:52 +02:00
|
|
|
// User is reading a message, set last_pipe and remove it from the deque
|
2015-09-06 01:04:27 +02:00
|
|
|
if (manual && !pending_pipes.empty ()) {
|
|
|
|
last_pipe = pending_pipes.front ();
|
|
|
|
pending_pipes.pop_front ();
|
|
|
|
}
|
2015-09-05 14:59:52 +02:00
|
|
|
|
2011-05-31 16:21:17 +02:00
|
|
|
int rc = msg_->close ();
|
|
|
|
errno_assert (rc == 0);
|
2013-04-18 17:23:57 +02:00
|
|
|
rc = msg_->init_size (pending_data.front ().size ());
|
2011-05-31 16:21:17 +02:00
|
|
|
errno_assert (rc == 0);
|
2018-02-01 11:46:09 +01:00
|
|
|
memcpy (msg_->data (), pending_data.front ().data (),
|
|
|
|
pending_data.front ().size ());
|
2015-08-20 07:46:34 -07:00
|
|
|
|
|
|
|
// set metadata only if there is some
|
2018-02-01 11:46:09 +01:00
|
|
|
if (metadata_t *metadata = pending_metadata.front ()) {
|
2015-08-20 07:46:34 -07:00
|
|
|
msg_->set_metadata (metadata);
|
2016-10-29 12:21:35 -07:00
|
|
|
// Remove ref corresponding to vector placement
|
2018-02-01 11:46:09 +01:00
|
|
|
metadata->drop_ref ();
|
2015-08-20 07:46:34 -07:00
|
|
|
}
|
2015-08-20 15:32:23 +02:00
|
|
|
|
2013-04-18 17:23:57 +02:00
|
|
|
msg_->set_flags (pending_flags.front ());
|
|
|
|
pending_data.pop_front ();
|
2015-08-20 12:09:56 +02:00
|
|
|
pending_metadata.pop_front ();
|
2013-04-18 17:23:57 +02:00
|
|
|
pending_flags.pop_front ();
|
2011-05-30 10:07:34 +02:00
|
|
|
return 0;
|
2011-01-14 12:38:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool zmq::xpub_t::xhas_in ()
|
|
|
|
{
|
2013-04-18 17:23:57 +02:00
|
|
|
return !pending_data.empty ();
|
2011-05-30 10:07:34 +02:00
|
|
|
}
|
|
|
|
|
2018-02-15 12:32:10 +01:00
|
|
|
void zmq::xpub_t::send_unsubscription (zmq::mtrie_t::prefix_t data_,
|
2018-02-01 11:46:09 +01:00
|
|
|
size_t size_,
|
2018-02-21 12:06:23 +01:00
|
|
|
xpub_t *self_)
|
2011-05-30 10:07:34 +02:00
|
|
|
{
|
2018-02-21 12:06:23 +01:00
|
|
|
if (self_->options.type != ZMQ_PUB) {
|
2015-09-06 18:46:32 +02:00
|
|
|
// Place the unsubscription to the queue of pending (un)subscriptions
|
|
|
|
// to be retrieved by the user later on.
|
2017-10-21 13:19:51 +02:00
|
|
|
blob_t unsub (size_ + 1);
|
2018-02-01 11:46:09 +01:00
|
|
|
*unsub.data () = 0;
|
2014-10-23 10:24:03 +02:00
|
|
|
if (size_ > 0)
|
2018-02-01 11:46:09 +01:00
|
|
|
memcpy (unsub.data () + 1, data_, size_);
|
2018-02-21 12:06:23 +01:00
|
|
|
self_->pending_data.ZMQ_PUSH_OR_EMPLACE_BACK (ZMQ_MOVE (unsub));
|
|
|
|
self_->pending_metadata.push_back (NULL);
|
|
|
|
self_->pending_flags.push_back (0);
|
2015-09-06 01:04:27 +02:00
|
|
|
|
2018-02-21 12:06:23 +01:00
|
|
|
if (self_->manual) {
|
|
|
|
self_->last_pipe = NULL;
|
|
|
|
self_->pending_pipes.push_back (NULL);
|
2015-09-06 01:04:27 +02:00
|
|
|
}
|
2011-05-30 10:07:34 +02:00
|
|
|
}
|
2011-01-14 12:38:07 +01:00
|
|
|
}
|