2010-12-04 23:14:38 +01:00
|
|
|
/*
|
2011-03-02 16:30:40 +01:00
|
|
|
Copyright (c) 2007-2011 iMatix Corporation
|
|
|
|
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
0MQ 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/>.
|
|
|
|
*/
|
|
|
|
|
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"
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
zmq::xpub_t::xpub_t (class ctx_t *parent_, uint32_t tid_) :
|
2011-05-23 20:30:01 +02:00
|
|
|
socket_base_t (parent_, tid_)
|
2010-12-04 23:14:38 +01:00
|
|
|
{
|
2010-12-06 22:36:10 +01:00
|
|
|
options.type = ZMQ_XPUB;
|
2010-12-04 23:14:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
zmq::xpub_t::~xpub_t ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-05-22 17:26:53 +02:00
|
|
|
void zmq::xpub_t::xattach_pipe (pipe_t *pipe_, const blob_t &peer_identity_)
|
2010-12-04 23:14:38 +01:00
|
|
|
{
|
2011-05-22 17:26:53 +02:00
|
|
|
zmq_assert (pipe_);
|
|
|
|
dist.attach (pipe_);
|
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;
|
|
|
|
sub.init ();
|
|
|
|
while (true) {
|
|
|
|
|
|
|
|
// Grab next subscription.
|
|
|
|
if (!pipe_->read (&sub)) {
|
|
|
|
sub.close ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply the subscription to the trie.
|
|
|
|
unsigned char *data = (unsigned char*) sub.data ();
|
|
|
|
size_t size = sub.size ();
|
|
|
|
zmq_assert (size > 0 && (*data == 0 || *data == 1));
|
|
|
|
bool unique;
|
|
|
|
if (*data == 0)
|
|
|
|
unique = subscriptions.rm (data + 1, size - 1, pipe_);
|
|
|
|
else
|
|
|
|
unique = subscriptions.add (data + 1, size - 1, pipe_);
|
|
|
|
|
|
|
|
// If the subscription is not a duplicate store it so that it can be
|
|
|
|
// passed to used on next recv call.
|
|
|
|
if (unique && options.type != ZMQ_PUB)
|
|
|
|
pending.push_back (blob_t ((unsigned char*) sub.data (),
|
|
|
|
sub.size ()));
|
|
|
|
}
|
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_);
|
|
|
|
}
|
|
|
|
|
2011-05-23 20:30:01 +02:00
|
|
|
void zmq::xpub_t::xterminated (pipe_t *pipe_)
|
2011-05-22 17:26:53 +02:00
|
|
|
{
|
2011-05-30 10:07:34 +02: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);
|
|
|
|
|
2011-05-22 17:26:53 +02:00
|
|
|
dist.terminated (pipe_);
|
2010-12-04 23:14:38 +01:00
|
|
|
}
|
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
int zmq::xpub_t::xsend (msg_t *msg_, int flags_)
|
2011-05-31 16:21:17 +02:00
|
|
|
{
|
2011-01-14 12:05:10 +01:00
|
|
|
return dist.send (msg_, flags_);
|
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
|
|
|
}
|
|
|
|
|
2011-04-21 22:27:48 +02:00
|
|
|
int zmq::xpub_t::xrecv (msg_t *msg_, int flags_)
|
2011-01-14 12:38:07 +01:00
|
|
|
{
|
2011-05-30 10:07:34 +02:00
|
|
|
// If there is at least one
|
2011-05-31 16:21:17 +02:00
|
|
|
if (pending.empty ()) {
|
2011-05-30 10:07:34 +02:00
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
|
|
|
}
|
2011-05-31 16:21:17 +02:00
|
|
|
|
|
|
|
int rc = msg_->close ();
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
rc = msg_->init_size (pending.front ().size ());
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
memcpy (msg_->data (), pending.front ().data (),
|
|
|
|
pending.front ().size ());
|
|
|
|
pending.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 ()
|
|
|
|
{
|
2011-05-31 16:21:17 +02:00
|
|
|
return !pending.empty ();
|
2011-05-30 10:07:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
|
|
|
|
// Place the unsubscription to the queue of pending (un)sunscriptions
|
|
|
|
// to be retrived by the user later on.
|
|
|
|
xpub_t *self = (xpub_t*) arg_;
|
|
|
|
blob_t unsub (size_ + 1, 0);
|
|
|
|
unsub [0] = 0;
|
|
|
|
memcpy (&unsub [1], data_, size_);
|
|
|
|
self->pending.push_back (unsub);
|
|
|
|
}
|
2011-01-14 12:38:07 +01:00
|
|
|
}
|
|
|
|
|