libzmq  master
ZeroMQ C++ Core Engine (LIBZMQ)
xpub.hpp
Go to the documentation of this file.
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  libzmq is free software; you can redistribute it and/or modify it under
7  the terms of the GNU Lesser General Public License (LGPL) as published
8  by the Free Software Foundation; either version 3 of the License, or
9  (at your option) any later version.
10 
11  As a special exception, the Contributors give you permission to link
12  this library with independent modules to produce an executable,
13  regardless of the license terms of these independent modules, and to
14  copy and distribute the resulting executable under terms of your choice,
15  provided that you also meet, for each linked independent module, the
16  terms and conditions of the license of that module. An independent
17  module is a module which is not derived from or based on this library.
18  If you modify this library, you must extend this exception to your
19  version of the library.
20 
21  libzmq is distributed in the hope that it will be useful, but WITHOUT
22  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
24  License for more details.
25 
26  You should have received a copy of the GNU Lesser General Public License
27  along with this program. If not, see <http://www.gnu.org/licenses/>.
28 */
29 
30 #ifndef __ZMQ_XPUB_HPP_INCLUDED__
31 #define __ZMQ_XPUB_HPP_INCLUDED__
32 
33 #include <deque>
34 #include <string>
35 
36 #include "socket_base.hpp"
37 #include "session_base.hpp"
38 #include "mtrie.hpp"
39 #include "array.hpp"
40 #include "dist.hpp"
41 
42 namespace zmq
43 {
44 
45  class ctx_t;
46  class msg_t;
47  class pipe_t;
48  class io_thread_t;
49 
50  class xpub_t :
51  public socket_base_t
52  {
53  public:
54 
55  xpub_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
56  ~xpub_t ();
57 
58  // Implementations of virtual functions from socket_base_t.
59  void xattach_pipe (zmq::pipe_t *pipe_, bool subscribe_to_all_ = false);
60  int xsend (zmq::msg_t *msg_);
61  bool xhas_out ();
62  int xrecv (zmq::msg_t *msg_);
63  bool xhas_in ();
64  void xread_activated (zmq::pipe_t *pipe_);
65  void xwrite_activated (zmq::pipe_t *pipe_);
66  int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
67  void xpipe_terminated (zmq::pipe_t *pipe_);
68 
69  private:
70 
71  // Function to be applied to the trie to send all the subscriptions
72  // upstream.
73  static void send_unsubscription (unsigned char *data_, size_t size_,
74  void *arg_);
75 
76  // Function to be applied to each matching pipes.
77  static void mark_as_matching (zmq::pipe_t *pipe_, void *arg_);
78 
79  // List of all subscriptions mapped to corresponding pipes.
81 
82  // Distributor of messages holding the list of outbound pipes.
84 
85  // If true, send all subscription messages upstream, not just
86  // unique ones
88 
89  // If true, send all unsubscription messages upstream, not just
90  // unique ones
92 
93  // True if we are in the middle of sending a multi-part message.
94  bool more;
95 
96  // Drop messages if HWM reached, otherwise return with EAGAIN
97  bool lossy;
98 
99  // Subscriptions will not bed added automatically, only after calling set option with ZMQ_SUBSCRIBE or ZMQ_UNSUBSCRIBE
100  bool manual;
101 
102  // Last pipe that sent subscription message, only used if xpub is on manual
104 
105  // Pipes that sent subscriptions messages that have not yet been processed, only used if xpub is on manual
106  std::deque <pipe_t*> pending_pipes;
107 
108  // Welcome message to send to pipe when attached
110 
111  // List of pending (un)subscriptions, ie. those that were already
112  // applied to the trie, but not yet received by the user.
113  typedef std::basic_string <unsigned char> blob_t;
114  std::deque <blob_t> pending_data;
115  std::deque <metadata_t*> pending_metadata;
116  std::deque <unsigned char> pending_flags;
117 
118  xpub_t (const xpub_t&);
119  const xpub_t &operator = (const xpub_t&);
120  };
121 
122 }
123 
124 #endif
bool xhas_out()
Definition: xpub.cpp:238
bool more
Definition: xpub.hpp:94
mtrie_t subscriptions
Definition: xpub.hpp:80
bool manual
Definition: xpub.hpp:100
std::deque< pipe_t * > pending_pipes
Definition: xpub.hpp:106
static void send_unsubscription(unsigned char *data_, size_t size_, void *arg_)
Definition: xpub.cpp:282
void xattach_pipe(zmq::pipe_t *pipe_, bool subscribe_to_all_=false)
Definition: xpub.cpp:58
std::deque< metadata_t * > pending_metadata
Definition: xpub.hpp:115
pipe_t * last_pipe
Definition: xpub.hpp:103
~xpub_t()
Definition: xpub.cpp:53
int xsend(zmq::msg_t *msg_)
Definition: xpub.cpp:208
dist_t dist
Definition: xpub.hpp:83
std::deque< blob_t > pending_data
Definition: xpub.hpp:114
std::deque< unsigned char > pending_flags
Definition: xpub.hpp:116
bool xhas_in()
Definition: xpub.cpp:277
const xpub_t & operator=(const xpub_t &)
xpub_t(zmq::ctx_t *parent_, uint32_t tid_, int sid_)
Definition: xpub.cpp:38
void xpipe_terminated(zmq::pipe_t *pipe_)
Definition: xpub.cpp:192
bool verbose_subs
Definition: xpub.hpp:87
int xsetsockopt(int option_, const void *optval_, size_t optvallen_)
Definition: xpub.cpp:134
std::basic_string< unsigned char > blob_t
Definition: xpub.hpp:113
static void mark_as_matching(zmq::pipe_t *pipe_, void *arg_)
Definition: xpub.cpp:202
bool lossy
Definition: xpub.hpp:97
msg_t welcome_msg
Definition: xpub.hpp:109
Definition: address.hpp:35
void xread_activated(zmq::pipe_t *pipe_)
Definition: xpub.cpp:84
void xwrite_activated(zmq::pipe_t *pipe_)
Definition: xpub.cpp:129
bool verbose_unsubs
Definition: xpub.hpp:91
int xrecv(zmq::msg_t *msg_)
Definition: xpub.cpp:243