pull.hpp 2.08 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_PULL_HPP_INCLUDED__
#define __ZMQ_PULL_HPP_INCLUDED__
24 25

#include "socket_base.hpp"
26
#include "session_base.hpp"
27
#include "fq.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 pull_t :
38
        public socket_base_t
39 40 41
    {
    public:

42
        pull_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
43
        ~pull_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 xrecv (zmq::msg_t *msg_);
50
        bool xhas_in ();
51 52
        void xread_activated (zmq::pipe_t *pipe_);
        void xterminated (zmq::pipe_t *pipe_);
53 54 55

    private:

56 57
        //  Fair queueing object for inbound pipes.
        fq_t fq;
58

59
        pull_t (const pull_t&);
60
        const pull_t &operator = (const pull_t&);
61 62 63

    };

64 65 66 67
    class pull_session_t : public session_base_t
    {
    public:

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

    private:

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

79 80 81
}

#endif