lb.cpp 4.54 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
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
29

30
#include "precompiled.hpp"
31 32 33
#include "lb.hpp"
#include "pipe.hpp"
#include "err.hpp"
34
#include "msg.hpp"
35

36
zmq::lb_t::lb_t () : active (0), current (0), more (false), dropping (false)
37 38 39 40 41
{
}

zmq::lb_t::~lb_t ()
{
42
    zmq_assert (pipes.empty ());
43 44
}

45
void zmq::lb_t::attach (pipe_t *pipe_)
46 47
{
    pipes.push_back (pipe_);
48
    activated (pipe_);
49 50
}

51
void zmq::lb_t::pipe_terminated (pipe_t *pipe_)
52
{
53 54 55 56 57 58 59
    pipes_t::size_type index = pipes.index (pipe_);

    //  If we are in the middle of multipart message and current pipe
    //  have disconnected, we have to drop the remainder of the message.
    if (index == current && more)
        dropping = true;

60 61
    //  Remove the pipe from the list; adjust number of active pipes
    //  accordingly.
62
    if (index < active) {
63
        active--;
64
        pipes.swap (index, active);
65 66 67
        if (current == active)
            current = 0;
    }
68
    pipes.erase (pipe_);
69 70
}

71
void zmq::lb_t::activated (pipe_t *pipe_)
72 73 74 75 76 77
{
    //  Move the pipe to the list of active pipes.
    pipes.swap (pipes.index (pipe_), active);
    active++;
}

78
int zmq::lb_t::send (msg_t *msg_)
79 80 81 82 83
{
    return sendpipe (msg_, NULL);
}

int zmq::lb_t::sendpipe (msg_t *msg_, pipe_t **pipe_)
84
{
85 86 87
    //  Drop the message if required. If we are at the end of the message
    //  switch back to non-dropping mode.
    if (dropping) {
88
        more = msg_->flags () & msg_t::more ? true : false;
Martin Hurton's avatar
Martin Hurton committed
89
        dropping = more;
90

91
        int rc = msg_->close ();
92
        errno_assert (rc == 0);
93
        rc = msg_->init ();
94
        errno_assert (rc == 0);
95 96 97
        return 0;
    }

Martin Hurton's avatar
Martin Hurton committed
98
    while (active > 0) {
99
        if (pipes[current]->write (msg_)) {
100
            if (pipe_)
101
                *pipe_ = pipes[current];
Martin Hurton's avatar
Martin Hurton committed
102
            break;
103
        }
104

105 106
        // If send fails for multi-part msg rollback other
        // parts sent earlier and return EAGAIN.
107
        // Application should handle this as suitable
108 109
        if (more) {
            pipes[current]->rollback ();
110 111 112 113 114
            more = 0;
            errno = EAGAIN;
            return -1;
        }

Martin Hurton's avatar
Martin Hurton committed
115 116 117 118 119 120 121
        active--;
        if (current < active)
            pipes.swap (current, active);
        else
            current = 0;
    }

122
    //  If there are no pipes we cannot send the message.
Martin Hurton's avatar
Martin Hurton committed
123
    if (active == 0) {
124 125 126 127
        errno = EAGAIN;
        return -1;
    }

128 129
    //  If it's final part of the message we can flush it downstream and
    //  continue round-robining (load balance).
130
    more = msg_->flags () & msg_t::more ? true : false;
131
    if (!more) {
132
        pipes[current]->flush ();
133 134 135

        if (++current >= active)
            current = 0;
136
    }
137 138

    //  Detach the message from the data buffer.
139 140
    int rc = msg_->init ();
    errno_assert (rc == 0);
141 142 143 144 145 146

    return 0;
}

bool zmq::lb_t::has_out ()
{
147 148
    //  If one part of the message was already written we can definitely
    //  write the rest of the message.
149
    if (more)
150 151
        return true;

Martin Hurton's avatar
Martin Hurton committed
152
    while (active > 0) {
153
        //  Check whether a pipe has room for another message.
154
        if (pipes[current]->check_write ())
155
            return true;
Martin Hurton's avatar
Martin Hurton committed
156

157
        //  Deactivate the pipe.
Martin Hurton's avatar
Martin Hurton committed
158
        active--;
159 160
        pipes.swap (current, active);
        if (current == active)
161 162 163 164 165
            current = 0;
    }

    return false;
}