device.cpp 3.76 KB
Newer Older
Pieter Hintjens's avatar
Pieter Hintjens committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
    Copyright (c) 2007-2011 iMatix Corporation
    Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License as published by
    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
    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 <stddef.h>

AJ Lewis's avatar
AJ Lewis committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
#include "platform.hpp"

#if defined ZMQ_FORCE_SELECT
#define ZMQ_POLL_BASED_ON_SELECT
#elif defined ZMQ_FORCE_POLL
#define ZMQ_POLL_BASED_ON_POLL
#elif defined ZMQ_HAVE_LINUX || defined ZMQ_HAVE_FREEBSD ||\
    defined ZMQ_HAVE_OPENBSD || defined ZMQ_HAVE_SOLARIS ||\
    defined ZMQ_HAVE_OSX || defined ZMQ_HAVE_QNXNTO ||\
    defined ZMQ_HAVE_HPUX || defined ZMQ_HAVE_AIX ||\
    defined ZMQ_HAVE_NETBSD
#define ZMQ_POLL_BASED_ON_POLL
#elif defined ZMQ_HAVE_WINDOWS || defined ZMQ_HAVE_OPENVMS ||\
     defined ZMQ_HAVE_CYGWIN
#define ZMQ_POLL_BASED_ON_SELECT
#endif

//  On AIX platform, poll.h has to be included first to get consistent
//  definition of pollfd structure (AIX uses 'reqevents' and 'retnevents'
//  instead of 'events' and 'revents' and defines macros to map from POSIX-y
//  names to AIX-specific names).
#if defined ZMQ_POLL_BASED_ON_POLL
#include <poll.h>
#endif

Pieter Hintjens's avatar
Pieter Hintjens committed
48 49 50 51 52 53 54 55 56 57 58 59
#include "../include/zmq.h"

#include "device.hpp"
#include "socket_base.hpp"
#include "likely.hpp"
#include "err.hpp"

int zmq::device (class socket_base_t *insocket_,
        class socket_base_t *outsocket_)
{
    msg_t msg;
    int rc = msg.init ();
Pieter Hintjens's avatar
Pieter Hintjens committed
60
    if (rc != 0)
Pieter Hintjens's avatar
Pieter Hintjens committed
61 62
        return -1;

63
    //  The algorithm below assumes ratio of requests and replies processed
Pieter Hintjens's avatar
Pieter Hintjens committed
64
    //  under full load to be 1:1.
65 66 67 68

    //  TODO: The current implementation drops messages when
    //  any of the pipes becomes full.

Pieter Hintjens's avatar
Pieter Hintjens committed
69
    int more;
Pieter Hintjens's avatar
Pieter Hintjens committed
70
    size_t moresz;
Pieter Hintjens's avatar
Pieter Hintjens committed
71 72 73 74
    zmq_pollitem_t items [] = {
        { insocket_, 0, ZMQ_POLLIN, 0 },
        { outsocket_,  0, ZMQ_POLLIN, 0 }
    };
Pieter Hintjens's avatar
Pieter Hintjens committed
75 76 77
    while (true) {
        //  Wait while there are either requests or replies to process.
        rc = zmq_poll (&items [0], 2, -1);
Pieter Hintjens's avatar
Pieter Hintjens committed
78
        if (unlikely (rc < 0))
Pieter Hintjens's avatar
Pieter Hintjens committed
79 80 81 82 83 84
            return -1;

        //  Process a request.
        if (items [0].revents & ZMQ_POLLIN) {
            while (true) {
                rc = insocket_->recv (&msg, 0);
Pieter Hintjens's avatar
Pieter Hintjens committed
85
                if (unlikely (rc < 0))
Pieter Hintjens's avatar
Pieter Hintjens committed
86
                    return -1;
87 88

                moresz = sizeof more;
Pieter Hintjens's avatar
Pieter Hintjens committed
89
                rc = insocket_->getsockopt (ZMQ_RCVMORE, &more, &moresz);
Pieter Hintjens's avatar
Pieter Hintjens committed
90
                if (unlikely (rc < 0))
Pieter Hintjens's avatar
Pieter Hintjens committed
91
                    return -1;
92

Pieter Hintjens's avatar
Pieter Hintjens committed
93 94
                rc = outsocket_->send (&msg, more? ZMQ_SNDMORE: 0);
                if (unlikely (rc < 0))
Pieter Hintjens's avatar
Pieter Hintjens committed
95
                    return -1;
Pieter Hintjens's avatar
Pieter Hintjens committed
96
                if (more == 0)
Pieter Hintjens's avatar
Pieter Hintjens committed
97 98 99 100 101 102 103
                    break;
            }
        }
        //  Process a reply.
        if (items [1].revents & ZMQ_POLLIN) {
            while (true) {
                rc = outsocket_->recv (&msg, 0);
Pieter Hintjens's avatar
Pieter Hintjens committed
104
                if (unlikely (rc < 0))
Pieter Hintjens's avatar
Pieter Hintjens committed
105
                    return -1;
106 107

                moresz = sizeof more;
Pieter Hintjens's avatar
Pieter Hintjens committed
108
                rc = outsocket_->getsockopt (ZMQ_RCVMORE, &more, &moresz);
Pieter Hintjens's avatar
Pieter Hintjens committed
109
                if (unlikely (rc < 0))
Pieter Hintjens's avatar
Pieter Hintjens committed
110
                    return -1;
111

Pieter Hintjens's avatar
Pieter Hintjens committed
112 113
                rc = insocket_->send (&msg, more? ZMQ_SNDMORE: 0);
                if (unlikely (rc < 0))
Pieter Hintjens's avatar
Pieter Hintjens committed
114
                    return -1;
Pieter Hintjens's avatar
Pieter Hintjens committed
115
                if (more == 0)
Pieter Hintjens's avatar
Pieter Hintjens committed
116 117 118 119 120 121 122
                    break;
            }
        }

    }
    return 0;
}