pair.hpp 2.14 KB
Newer Older
1
/*
Martin Sustrik's avatar
Martin Sustrik committed
2
    Copyright (c) 2009-2011 250bpm s.r.o.
3
    Copyright (c) 2007-2009 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/>.
*/

Martin Sustrik's avatar
Martin Sustrik committed
22 23
#ifndef __ZMQ_PAIR_HPP_INCLUDED__
#define __ZMQ_PAIR_HPP_INCLUDED__
24 25

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

namespace zmq
{

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

36
    class pair_t :
37
        public socket_base_t
38 39 40
    {
    public:

41
        pair_t (zmq::ctx_t *parent_, uint32_t tid_, int sid);
Martin Sustrik's avatar
Martin Sustrik committed
42
        ~pair_t ();
43 44

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

54 55
    private:

56
        zmq::pipe_t *pipe;
57

Martin Sustrik's avatar
Martin Sustrik committed
58
        pair_t (const pair_t&);
59
        const pair_t &operator = (const pair_t&);
60 61
    };

62 63 64 65
    class pair_session_t : public session_base_t
    {
    public:

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

    private:

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

77 78 79
}

#endif