xpub.hpp 3.06 KB
Newer Older
1
/*
2 3
    Copyright (c) 2010-2011 250bpm s.r.o.
    Copyright (c) 2010-2011 Other contributors as noted in the AUTHORS file
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

    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/>.
*/

#ifndef __ZMQ_XPUB_HPP_INCLUDED__
#define __ZMQ_XPUB_HPP_INCLUDED__

24
#include <deque>
Martin Sustrik's avatar
Martin Sustrik committed
25
#include <string>
26

27
#include "socket_base.hpp"
28
#include "session_base.hpp"
29
#include "mtrie.hpp"
30
#include "array.hpp"
31
#include "dist.hpp"
32 33 34 35

namespace zmq
{

36 37 38 39 40
    class ctx_t;
    class msg_t;
    class pipe_t;
    class io_thread_t;

41
    class xpub_t :
42
        public socket_base_t
43 44 45
    {
    public:

46
        xpub_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
47 48 49
        ~xpub_t ();

        //  Implementations of virtual functions from socket_base_t.
50
        void xattach_pipe (zmq::pipe_t *pipe_, bool icanhasall_ = false);
51
        int xsend (zmq::msg_t *msg_, int flags_);
52
        bool xhas_out ();
53
        int xrecv (zmq::msg_t *msg_, int flags_);
54
        bool xhas_in ();
55 56 57
        void xread_activated (zmq::pipe_t *pipe_);
        void xwrite_activated (zmq::pipe_t *pipe_);
        void xterminated (zmq::pipe_t *pipe_);
58 59 60

    private:

61 62 63 64 65
        //  Function to be applied to the trie to send all the subsciptions
        //  upstream.
        static void send_unsubscription (unsigned char *data_, size_t size_,
            void *arg_);

66
        //  Function to be applied to each matching pipes.
67
        static void mark_as_matching (zmq::pipe_t *pipe_, void *arg_);
68

69 70 71
        //  List of all subscriptions mapped to corresponding pipes.
        mtrie_t subscriptions;

72 73
        //  Distributor of messages holding the list of outbound pipes.
        dist_t dist;
74

75 76 77
        //  True if we are in the middle of sending a multi-part message.
        bool more;

78 79
        //  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
80
        typedef std::basic_string <unsigned char> blob_t;
81 82 83
        typedef std::deque <blob_t> pending_t;
        pending_t pending;

84
        xpub_t (const xpub_t&);
85
        const xpub_t &operator = (const xpub_t&);
86 87
    };

88 89 90 91
    class xpub_session_t : public session_base_t
    {
    public:

92 93
        xpub_session_t (zmq::io_thread_t *io_thread_, bool connect_,
            socket_base_t *socket_, const options_t &options_,
94
            const address_t *addr_);
95 96 97 98 99 100 101 102
        ~xpub_session_t ();

    private:

        xpub_session_t (const xpub_session_t&);
        const xpub_session_t &operator = (const xpub_session_t&);
    };

103 104 105
}

#endif