xpub.hpp 4.22 KB
Newer Older
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 7 8
    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
9 10
    (at your option) any later version.

11 12 13 14 15 16 17 18 19 20 21 22 23 24
    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.
25 26 27 28 29 30 31 32

    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__

33
#include <deque>
Martin Sustrik's avatar
Martin Sustrik committed
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 43 44

namespace zmq
{

45 46 47 48 49
    class ctx_t;
    class msg_t;
    class pipe_t;
    class io_thread_t;

50
    class xpub_t :
51
        public socket_base_t
52 53 54
    {
    public:

55
        xpub_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
56 57 58
        ~xpub_t ();

        //  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 65
        void xread_activated (zmq::pipe_t *pipe_);
        void xwrite_activated (zmq::pipe_t *pipe_);
Pieter Hintjens's avatar
Pieter Hintjens committed
66
        int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
67
        void xpipe_terminated (zmq::pipe_t *pipe_);
68 69 70

    private:

71
        //  Function to be applied to the trie to send all the subscriptions
72 73 74 75
        //  upstream.
        static void send_unsubscription (unsigned char *data_, size_t size_,
            void *arg_);

76
        //  Function to be applied to each matching pipes.
77
        static void mark_as_matching (zmq::pipe_t *pipe_, void *arg_);
78

79 80 81
        //  List of all subscriptions mapped to corresponding pipes.
        mtrie_t subscriptions;

82 83
        //  Distributor of messages holding the list of outbound pipes.
        dist_t dist;
84

Pieter Hintjens's avatar
Pieter Hintjens committed
85 86
        // If true, send all subscription messages upstream, not just
        // unique ones
87 88 89 90 91
        bool verbose_subs;

        // If true, send all unsubscription messages upstream, not just
        // unique ones
        bool verbose_unsubs;
Pieter Hintjens's avatar
Pieter Hintjens committed
92

93 94 95
        //  True if we are in the middle of sending a multi-part message.
        bool more;

96 97
        //  Drop messages if HWM reached, otherwise return with EAGAIN
        bool lossy;
98

99 100
        //  Subscriptions will not bed added automatically, only after calling set option with ZMQ_SUBSCRIBE or ZMQ_UNSUBSCRIBE
        bool manual;
101

102
        //  Last pipe that sent subscription message, only used if xpub is on manual
103
        pipe_t *last_pipe;
104

105 106 107
        // Pipes that sent subscriptions messages that have not yet been processed, only used if xpub is on manual
        std::deque <pipe_t*> pending_pipes;

108 109
        //  Welcome message to send to pipe when attached
        msg_t welcome_msg;
somdoron's avatar
somdoron committed
110

111 112
        //  List of pending (un)subscriptions, ie. those that were already
        //  applied to the trie, but not yet received by the user.
Martin Sustrik's avatar
Martin Sustrik committed
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