pub.hpp 2.18 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2010 iMatix Corporation
3 4 5 6

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
7
    the terms of the GNU Lesser General Public License as published by
8 9 10 11 12 13
    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
14
    GNU Lesser General Public License for more details.
15

16
    You should have received a copy of the GNU Lesser General Public License
17 18 19
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

20 21
#ifndef __ZMQ_PUB_HPP_INCLUDED__
#define __ZMQ_PUB_HPP_INCLUDED__
22 23

#include "socket_base.hpp"
24
#include "array.hpp"
25
#include "pipe.hpp"
26 27 28 29

namespace zmq
{

30
    class pub_t : public socket_base_t, public i_writer_events
31 32 33
    {
    public:

Martin Sustrik's avatar
Martin Sustrik committed
34
        pub_t (class ctx_t *parent_, uint32_t tid_);
35 36
        ~pub_t ();

37
        //  Implementations of virtual functions from socket_base_t.
38 39
        void xattach_pipes (class reader_t *inpipe_, class writer_t *outpipe_,
            const blob_t &peer_identity_);
40
        int xsend (zmq_msg_t *msg_, int flags_);
41
        bool xhas_out ();
42

43 44 45 46
        //  i_writer_events interface implementation.
        void activated (writer_t *pipe_);
        void terminated (writer_t *pipe_);

47 48
    private:

49
        //  Hook into the termination process.
50
        void process_term (int linger_);
51

52 53 54
        //  Write the message to the pipe. Make the pipe inactive if writing
        //  fails. In such a case false is returned.
        bool write (class writer_t *pipe_, zmq_msg_t *msg_);
55

56
        //  Outbound pipes, i.e. those the socket is sending messages to.
57
        typedef array_t <class writer_t> pipes_t;
58
        pipes_t pipes;
59

60 61 62
        //  Number of active pipes. All the active pipes are located at the
        //  beginning of the pipes array.
        pipes_t::size_type active;
63

64 65 66
        //  True if termination process is already underway.
        bool terminating;

67 68
        pub_t (const pub_t&);
        void operator = (const pub_t&);
69 70 71 72 73
    };

}

#endif