pair.cpp 3.63 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
3

4
    This file is part of libzmq, the ZeroMQ core engine in C++.
5

6 7 8
    libzmq is free software; you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License (LGPL) as published
    by the Free Software Foundation; either version 3 of the License, or
9 10
    (at your option) any later version.

11 12 13 14 15 16 17 18 19 20 21 22 23 24
    As a special exception, the Contributors give you permission to link
    this library with independent modules to produce an executable,
    regardless of the license terms of these independent modules, and to
    copy and distribute the resulting executable under terms of your choice,
    provided that you also meet, for each linked independent module, the
    terms and conditions of the license of that module. An independent
    module is a module which is not derived from or based on this library.
    If you modify this library, you must extend this exception to your
    version of the library.

    libzmq 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.
25

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

30
#include "precompiled.hpp"
31
#include "macros.hpp"
Martin Sustrik's avatar
Martin Sustrik committed
32
#include "pair.hpp"
33
#include "err.hpp"
34
#include "pipe.hpp"
35
#include "msg.hpp"
36

37 38
zmq::pair_t::pair_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
    socket_base_t (parent_, tid_, sid_),
39 40
    _pipe (NULL),
    _last_in (NULL)
41
{
42
    options.type = ZMQ_PAIR;
43 44
}

Martin Sustrik's avatar
Martin Sustrik committed
45
zmq::pair_t::~pair_t ()
46
{
47
    zmq_assert (!_pipe);
48 49
}

50 51 52
void zmq::pair_t::xattach_pipe (pipe_t *pipe_,
                                bool subscribe_to_all_,
                                bool locally_initiated_)
53
{
54
    LIBZMQ_UNUSED (subscribe_to_all_);
55
    LIBZMQ_UNUSED (locally_initiated_);
56

57 58 59 60
    zmq_assert (pipe_ != NULL);

    //  ZMQ_PAIR socket can only be connected to a single peer.
    //  The socket rejects any further connection requests.
61 62
    if (_pipe == NULL)
        _pipe = pipe_;
63 64
    else
        pipe_->terminate (false);
65 66
}

67
void zmq::pair_t::xpipe_terminated (pipe_t *pipe_)
68
{
69 70 71
    if (pipe_ == _pipe) {
        if (_last_in == _pipe) {
            _last_in = NULL;
72
        }
73
        _pipe = NULL;
74
    }
75 76
}

77
void zmq::pair_t::xread_activated (pipe_t *)
Martin Hurton's avatar
Martin Hurton committed
78
{
79 80
    //  There's just one pipe. No lists of active and inactive pipes.
    //  There's nothing to do here.
Martin Hurton's avatar
Martin Hurton committed
81 82
}

83
void zmq::pair_t::xwrite_activated (pipe_t *)
84
{
85 86
    //  There's just one pipe. No lists of active and inactive pipes.
    //  There's nothing to do here.
87 88
}

89
int zmq::pair_t::xsend (msg_t *msg_)
90
{
91
    if (!_pipe || !_pipe->write (msg_)) {
92 93 94 95
        errno = EAGAIN;
        return -1;
    }

96
    if (!(msg_->flags () & msg_t::more))
97
        _pipe->flush ();
98 99

    //  Detach the original message from the data buffer.
100 101
    int rc = msg_->init ();
    errno_assert (rc == 0);
102

Martin Sustrik's avatar
Martin Sustrik committed
103
    return 0;
104 105
}

106
int zmq::pair_t::xrecv (msg_t *msg_)
107
{
108
    //  Deallocate old content of the message.
109 110
    int rc = msg_->close ();
    errno_assert (rc == 0);
111

112
    if (!_pipe || !_pipe->read (msg_)) {
113
        //  Initialise the output parameter to be a 0-byte message.
114 115
        rc = msg_->init ();
        errno_assert (rc == 0);
116

117 118 119
        errno = EAGAIN;
        return -1;
    }
120
    _last_in = _pipe;
Martin Sustrik's avatar
Martin Sustrik committed
121
    return 0;
122 123
}

Martin Sustrik's avatar
Martin Sustrik committed
124
bool zmq::pair_t::xhas_in ()
125
{
126
    if (!_pipe)
127 128
        return false;

129
    return _pipe->check_read ();
130 131
}

Martin Sustrik's avatar
Martin Sustrik committed
132
bool zmq::pair_t::xhas_out ()
133
{
134
    if (!_pipe)
135 136
        return false;

137
    return _pipe->check_write ();
138
}