gather.cpp 2.8 KB
Newer Older
somdoron's avatar
somdoron committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
/*
    Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file

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

    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
    (at your option) any later version.

    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.

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

#include "precompiled.hpp"
#include "macros.hpp"
#include "gather.hpp"
#include "err.hpp"
#include "msg.hpp"
#include "pipe.hpp"

zmq::gather_t::gather_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
    socket_base_t (parent_, tid_, sid_, true)
{
    options.type = ZMQ_GATHER;
}

zmq::gather_t::~gather_t ()
{
}

47 48 49
void zmq::gather_t::xattach_pipe (pipe_t *pipe_,
                                  bool subscribe_to_all_,
                                  bool locally_initiated_)
somdoron's avatar
somdoron committed
50 51
{
    LIBZMQ_UNUSED (subscribe_to_all_);
52
    LIBZMQ_UNUSED (locally_initiated_);
somdoron's avatar
somdoron committed
53 54

    zmq_assert (pipe_);
55
    _fq.attach (pipe_);
somdoron's avatar
somdoron committed
56 57 58 59
}

void zmq::gather_t::xread_activated (pipe_t *pipe_)
{
60
    _fq.activated (pipe_);
somdoron's avatar
somdoron committed
61 62 63 64
}

void zmq::gather_t::xpipe_terminated (pipe_t *pipe_)
{
65
    _fq.pipe_terminated (pipe_);
somdoron's avatar
somdoron committed
66 67 68 69
}

int zmq::gather_t::xrecv (msg_t *msg_)
{
70
    int rc = _fq.recvpipe (msg_, NULL);
somdoron's avatar
somdoron committed
71 72 73 74

    // Drop any messages with more flag
    while (rc == 0 && msg_->flags () & msg_t::more) {
        // drop all frames of the current multi-frame message
75
        rc = _fq.recvpipe (msg_, NULL);
somdoron's avatar
somdoron committed
76 77

        while (rc == 0 && msg_->flags () & msg_t::more)
78
            rc = _fq.recvpipe (msg_, NULL);
somdoron's avatar
somdoron committed
79 80 81

        // get the new message
        if (rc == 0)
82
            rc = _fq.recvpipe (msg_, NULL);
somdoron's avatar
somdoron committed
83 84 85 86 87 88 89
    }

    return rc;
}

bool zmq::gather_t::xhas_in ()
{
90
    return _fq.has_in ();
somdoron's avatar
somdoron committed
91 92
}

93
const zmq::blob_t &zmq::gather_t::get_credential () const
somdoron's avatar
somdoron committed
94
{
95
    return _fq.get_credential ();
somdoron's avatar
somdoron committed
96
}