push.hpp 2.09 KB
Newer Older
1
/*
Martin Sustrik's avatar
Martin Sustrik committed
2
    Copyright (c) 2009-2011 250bpm s.r.o.
3
    Copyright (c) 2007-2010 iMatix Corporation
4
    Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
5 6 7 8

    This file is part of 0MQ.

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

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

22 23
#ifndef __ZMQ_PUSH_HPP_INCLUDED__
#define __ZMQ_PUSH_HPP_INCLUDED__
24 25

#include "socket_base.hpp"
26
#include "session_base.hpp"
27
#include "lb.hpp"
28 29 30 31

namespace zmq
{

32 33 34 35 36
    class ctx_t;
    class pipe_t;
    class msg_t;
    class io_thread_t;

37
    class push_t :
38
        public socket_base_t
39 40 41
    {
    public:

42
        push_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
43
        ~push_t ();
44

45 46
    protected:

47
        //  Overloads of functions from socket_base_t.
48
        void xattach_pipe (zmq::pipe_t *pipe_, bool icanhasall_);
49
        int xsend (zmq::msg_t *msg_);
50
        bool xhas_out ();
51 52
        void xwrite_activated (zmq::pipe_t *pipe_);
        void xterminated (zmq::pipe_t *pipe_);
53 54 55

    private:

56 57
        //  Load balancer managing the outbound pipes.
        lb_t lb;
58

59
        push_t (const push_t&);
60
        const push_t &operator = (const push_t&);
61 62
    };

63 64 65 66
    class push_session_t : public session_base_t
    {
    public:

67 68
        push_session_t (zmq::io_thread_t *io_thread_, bool connect_,
            socket_base_t *socket_, const options_t &options_,
69
            const address_t *addr_);
70 71 72 73 74 75 76 77
        ~push_session_t ();

    private:

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

78 79 80
}

#endif