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>
|
|
|
|
|
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"
|
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;
|
2010-12-04 23:14:38 +01:00
|
|
|
|
2011-05-23 20:30:01 +02:00
|
|
|
class xpub_t : 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_);
|
2019-12-24 10:39:26 +01:00
|
|
|
~xpub_t () ZMQ_OVERRIDE;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2010-12-04 23:14:38 +01:00
|
|
|
// Implementations of virtual functions from socket_base_t.
|
2018-07-24 13:48:43 -05:00
|
|
|
void xattach_pipe (zmq::pipe_t *pipe_,
|
|
|
|
bool subscribe_to_all_ = false,
|
2019-12-24 10:39:26 +01:00
|
|
|
bool locally_initiated_ = false) ZMQ_OVERRIDE;
|
|
|
|
int xsend (zmq::msg_t *msg_) ZMQ_FINAL;
|
|
|
|
bool xhas_out () ZMQ_FINAL;
|
|
|
|
int xrecv (zmq::msg_t *msg_) ZMQ_OVERRIDE;
|
|
|
|
bool xhas_in () ZMQ_OVERRIDE;
|
|
|
|
void xread_activated (zmq::pipe_t *pipe_) ZMQ_FINAL;
|
|
|
|
void xwrite_activated (zmq::pipe_t *pipe_) ZMQ_FINAL;
|
|
|
|
int
|
|
|
|
xsetsockopt (int option_, const void *optval_, size_t optvallen_) ZMQ_FINAL;
|
|
|
|
void xpipe_terminated (zmq::pipe_t *pipe_) ZMQ_FINAL;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
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.
|
2018-02-15 12:32:10 +01:00
|
|
|
static void send_unsubscription (zmq::mtrie_t::prefix_t data_,
|
|
|
|
size_t size_,
|
2018-02-21 12:06:23 +01:00
|
|
|
xpub_t *self_);
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2011-06-11 20:29:56 +02:00
|
|
|
// Function to be applied to each matching pipes.
|
2019-12-08 14:31:29 +01:00
|
|
|
static void mark_as_matching (zmq::pipe_t *pipe_, xpub_t *self_);
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2011-05-30 10:07:34 +02:00
|
|
|
// List of all subscriptions mapped to corresponding pipes.
|
2018-05-27 11:10:39 +02:00
|
|
|
mtrie_t _subscriptions;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2016-06-17 11:40:17 +01:00
|
|
|
// List of manual subscriptions mapped to corresponding pipes.
|
2018-05-27 11:10:39 +02:00
|
|
|
mtrie_t _manual_subscriptions;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2011-01-14 12:05:10 +01:00
|
|
|
// Distributor of messages holding the list of outbound pipes.
|
2018-05-27 11:10:39 +02:00
|
|
|
dist_t _dist;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2012-10-08 00:57:43 +09:00
|
|
|
// If true, send all subscription messages upstream, not just
|
|
|
|
// unique ones
|
2018-05-27 11:10:39 +02:00
|
|
|
bool _verbose_subs;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2015-07-21 23:35:50 +01:00
|
|
|
// If true, send all unsubscription messages upstream, not just
|
|
|
|
// unique ones
|
2018-05-27 11:10:39 +02:00
|
|
|
bool _verbose_unsubs;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2011-06-12 10:19:21 +02:00
|
|
|
// True if we are in the middle of sending a multi-part message.
|
2019-11-19 13:29:54 +01:00
|
|
|
bool _more_send;
|
|
|
|
|
|
|
|
// True if we are in the middle of receiving a multi-part message.
|
|
|
|
bool _more_recv;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2019-11-20 14:18:02 +01:00
|
|
|
// If true, subscribe and cancel messages are processed for the rest
|
|
|
|
// of multipart message.
|
|
|
|
bool _process_subscribe;
|
|
|
|
|
|
|
|
// This option is enabled with ZMQ_ONLY_FIRST_SUBSCRIBE.
|
|
|
|
// If true, messages following subscribe/unsubscribe in a multipart
|
|
|
|
// message are treated as user data regardless of the first byte.
|
|
|
|
bool _only_first_subscribe;
|
|
|
|
|
2014-08-27 12:04:51 +02:00
|
|
|
// Drop messages if HWM reached, otherwise return with EAGAIN
|
2018-05-27 11:10:39 +02:00
|
|
|
bool _lossy;
|
2018-02-01 11:46:09 +01: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
|
2018-05-27 11:10:39 +02:00
|
|
|
bool _manual;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2019-05-18 05:12:32 +08:00
|
|
|
// Send message to the last pipe, only used if xpub is on manual and after calling set option with ZMQ_SUBSCRIBE
|
|
|
|
bool _send_last_pipe;
|
|
|
|
|
|
|
|
// Function to be applied to match the last pipe.
|
2019-12-08 14:31:29 +01:00
|
|
|
static void mark_last_pipe_as_matching (zmq::pipe_t *pipe_, xpub_t *self_);
|
2019-05-18 05:12:32 +08:00
|
|
|
|
2015-09-05 14:59:52 +02:00
|
|
|
// Last pipe that sent subscription message, only used if xpub is on manual
|
2018-05-27 11:10:39 +02:00
|
|
|
pipe_t *_last_pipe;
|
2018-02-01 11:46:09 +01: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
|
2018-05-27 11:10:39 +02:00
|
|
|
std::deque<pipe_t *> _pending_pipes;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2015-08-20 07:46:34 -07:00
|
|
|
// Welcome message to send to pipe when attached
|
2018-05-27 11:10:39 +02:00
|
|
|
msg_t _welcome_msg;
|
2018-02-01 11:46:09 +01: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.
|
2018-05-27 11:10:39 +02:00
|
|
|
std::deque<blob_t> _pending_data;
|
|
|
|
std::deque<metadata_t *> _pending_metadata;
|
|
|
|
std::deque<unsigned char> _pending_flags;
|
2018-02-01 11:46:09 +01:00
|
|
|
|
2019-12-08 19:22:04 +01:00
|
|
|
ZMQ_NON_COPYABLE_NOR_MOVABLE (xpub_t)
|
2010-12-04 23:14:38 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|