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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ZMQ_XPUB_HPP_INCLUDED__
|
|
|
|
#define __ZMQ_XPUB_HPP_INCLUDED__
|
|
|
|
|
2011-05-30 10:07:34 +02:00
|
|
|
#include <deque>
|
2011-07-24 17:50:05 +02:00
|
|
|
#include <string>
|
2011-05-30 10:07:34 +02:00
|
|
|
|
2010-12-04 23:14:38 +01:00
|
|
|
#include "socket_base.hpp"
|
2011-09-15 10:00:23 +02:00
|
|
|
#include "session_base.hpp"
|
2011-05-30 10:07:34 +02:00
|
|
|
#include "mtrie.hpp"
|
2010-12-04 23:14:38 +01:00
|
|
|
#include "array.hpp"
|
2011-01-14 12:05:10 +01:00
|
|
|
#include "dist.hpp"
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
namespace zmq
|
|
|
|
{
|
|
|
|
|
2011-11-09 15:22:20 +01:00
|
|
|
class ctx_t;
|
|
|
|
class msg_t;
|
|
|
|
class pipe_t;
|
|
|
|
class io_thread_t;
|
|
|
|
|
2011-05-22 17:26:53 +02:00
|
|
|
class xpub_t :
|
2011-05-23 20:30:01 +02:00
|
|
|
public socket_base_t
|
2010-12-04 23:14:38 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2012-03-19 19:41:20 -05:00
|
|
|
xpub_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
|
2010-12-04 23:14:38 +01:00
|
|
|
~xpub_t ();
|
|
|
|
|
|
|
|
// Implementations of virtual functions from socket_base_t.
|
2013-08-31 09:53:47 -04:00
|
|
|
void xattach_pipe (zmq::pipe_t *pipe_, bool subscribe_to_all_ = false);
|
2012-11-09 17:08:03 +01:00
|
|
|
int xsend (zmq::msg_t *msg_);
|
2010-12-04 23:14:38 +01:00
|
|
|
bool xhas_out ();
|
2012-11-09 17:17:43 +01:00
|
|
|
int xrecv (zmq::msg_t *msg_);
|
2011-01-14 12:38:07 +01:00
|
|
|
bool xhas_in ();
|
2011-11-09 15:22:20 +01:00
|
|
|
void xread_activated (zmq::pipe_t *pipe_);
|
|
|
|
void xwrite_activated (zmq::pipe_t *pipe_);
|
2012-10-08 00:57:43 +09:00
|
|
|
int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
|
2013-05-28 16:49:24 +02:00
|
|
|
void xpipe_terminated (zmq::pipe_t *pipe_);
|
2010-12-04 23:14:38 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-09-06 18:46:32 +02:00
|
|
|
// Function to be applied to the trie to send all the subscriptions
|
2011-05-30 10:07:34 +02:00
|
|
|
// upstream.
|
|
|
|
static void send_unsubscription (unsigned char *data_, size_t size_,
|
|
|
|
void *arg_);
|
|
|
|
|
2011-06-11 20:29:56 +02:00
|
|
|
// Function to be applied to each matching pipes.
|
2011-11-09 15:22:20 +01:00
|
|
|
static void mark_as_matching (zmq::pipe_t *pipe_, void *arg_);
|
2011-06-11 20:29:56 +02:00
|
|
|
|
2011-05-30 10:07:34 +02:00
|
|
|
// List of all subscriptions mapped to corresponding pipes.
|
|
|
|
mtrie_t subscriptions;
|
|
|
|
|
2011-01-14 12:05:10 +01:00
|
|
|
// Distributor of messages holding the list of outbound pipes.
|
|
|
|
dist_t dist;
|
2010-12-04 23:14:38 +01:00
|
|
|
|
2012-10-08 00:57:43 +09:00
|
|
|
// If true, send all subscription messages upstream, not just
|
|
|
|
// unique ones
|
2015-07-21 23:35:50 +01:00
|
|
|
bool verbose_subs;
|
|
|
|
|
|
|
|
// If true, send all unsubscription messages upstream, not just
|
|
|
|
// unique ones
|
|
|
|
bool verbose_unsubs;
|
2012-10-08 00:57:43 +09:00
|
|
|
|
2011-06-12 10:19:21 +02:00
|
|
|
// True if we are in the middle of sending a multi-part message.
|
|
|
|
bool more;
|
|
|
|
|
2014-08-27 12:04:51 +02:00
|
|
|
// Drop messages if HWM reached, otherwise return with EAGAIN
|
|
|
|
bool lossy;
|
2014-08-08 19:36:00 +02:00
|
|
|
|
2015-08-20 07:46:34 -07:00
|
|
|
// Subscriptions will not bed added automatically, only after calling set option with ZMQ_SUBSCRIBE or ZMQ_UNSUBSCRIBE
|
|
|
|
bool manual;
|
2014-11-26 10:38:54 +02:00
|
|
|
|
2015-09-05 14:59:52 +02:00
|
|
|
// Last pipe that sent subscription message, only used if xpub is on manual
|
2015-08-20 07:46:34 -07:00
|
|
|
pipe_t *last_pipe;
|
2014-11-26 10:38:54 +02:00
|
|
|
|
2015-09-05 14:59:52 +02:00
|
|
|
// Pipes that sent subscriptions messages that have not yet been processed, only used if xpub is on manual
|
|
|
|
std::deque <pipe_t*> pending_pipes;
|
|
|
|
|
2015-08-20 07:46:34 -07:00
|
|
|
// Welcome message to send to pipe when attached
|
|
|
|
msg_t welcome_msg;
|
2014-11-26 13:37:36 +02:00
|
|
|
|
2011-05-30 10:07:34 +02:00
|
|
|
// List of pending (un)subscriptions, ie. those that were already
|
|
|
|
// applied to the trie, but not yet received by the user.
|
2011-07-24 17:50:05 +02:00
|
|
|
typedef std::basic_string <unsigned char> blob_t;
|
2013-04-18 17:23:57 +02:00
|
|
|
std::deque <blob_t> pending_data;
|
2015-08-20 12:09:56 +02:00
|
|
|
std::deque <metadata_t*> pending_metadata;
|
2013-04-18 17:23:57 +02:00
|
|
|
std::deque <unsigned char> pending_flags;
|
2011-05-30 10:07:34 +02:00
|
|
|
|
2010-12-04 23:14:38 +01:00
|
|
|
xpub_t (const xpub_t&);
|
2011-01-13 11:44:23 +01:00
|
|
|
const xpub_t &operator = (const xpub_t&);
|
2010-12-04 23:14:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|