pair.cpp 3.63 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2015 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 "macros.hpp"
Martin Sustrik's avatar
Martin Sustrik committed
31
#include "pair.hpp"
32
#include "err.hpp"
33
#include "pipe.hpp"
34
#include "msg.hpp"
35

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

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

49
void zmq::pair_t::xattach_pipe (pipe_t *pipe_, bool subscribe_to_all_)
50
{
51
    LIBZMQ_UNUSED (subscribe_to_all_);
52

53 54 55 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.
    if (pipe == NULL)
        pipe = pipe_;
    else
        pipe_->terminate (false);
61 62
}

63
void zmq::pair_t::xpipe_terminated (pipe_t *pipe_)
64
{
65 66 67 68 69
    if (pipe_ == pipe) {
        if (last_in == pipe) {
            saved_credential = last_in->get_credential ();
            last_in = NULL;
        }
70
        pipe = NULL;
71
    }
72 73
}

74
void zmq::pair_t::xread_activated (pipe_t *)
Martin Hurton's avatar
Martin Hurton committed
75
{
76 77
    //  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
78 79
}

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

86
int zmq::pair_t::xsend (msg_t *msg_)
87
{
88
    if (!pipe || !pipe->write (msg_)) {
89 90 91 92
        errno = EAGAIN;
        return -1;
    }

93
    if (!(msg_->flags () & msg_t::more))
94
        pipe->flush ();
95 96

    //  Detach the original message from the data buffer.
97 98
    int rc = msg_->init ();
    errno_assert (rc == 0);
99

Martin Sustrik's avatar
Martin Sustrik committed
100
    return 0;
101 102
}

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

109
    if (!pipe || !pipe->read (msg_)) {
110 111

        //  Initialise the output parameter to be a 0-byte message.
112 113
        rc = msg_->init ();
        errno_assert (rc == 0);
114

115 116 117
        errno = EAGAIN;
        return -1;
    }
118
    last_in = pipe;
Martin Sustrik's avatar
Martin Sustrik committed
119
    return 0;
120 121
}

Martin Sustrik's avatar
Martin Sustrik committed
122
bool zmq::pair_t::xhas_in ()
123
{
124
    if (!pipe)
125 126
        return false;

127
    return pipe->check_read ();
128 129
}

Martin Sustrik's avatar
Martin Sustrik committed
130
bool zmq::pair_t::xhas_out ()
131
{
132
    if (!pipe)
133 134
        return false;

135
    return pipe->check_write ();
136
}
137 138 139 140 141

zmq::blob_t zmq::pair_t::get_credential () const
{
    return last_in? last_in->get_credential (): saved_credential;
}