libzmq/src/zmq_engine.cpp

219 lines
5.4 KiB
C++
Raw Normal View History

/*
Copyright (c) 2007-2010 iMatix Corporation
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 "platform.hpp"
#if defined ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#endif
#include <string.h>
2009-12-15 23:49:55 +01:00
#include <new>
#include "zmq_engine.hpp"
2009-09-16 11:02:18 +02:00
#include "zmq_connecter.hpp"
#include "io_thread.hpp"
2009-08-12 09:40:16 +02:00
#include "i_inout.hpp"
#include "config.hpp"
#include "err.hpp"
2010-08-11 14:09:56 +02:00
zmq::zmq_engine_t::zmq_engine_t (fd_t fd_, const options_t &options_) :
inpos (NULL),
2009-08-12 09:40:16 +02:00
insize (0),
decoder (in_batch_size),
outpos (NULL),
2009-08-12 09:40:16 +02:00
outsize (0),
encoder (out_batch_size),
inout (NULL),
ephemeral_inout (NULL),
options (options_),
plugged (false)
{
2009-08-12 09:40:16 +02:00
// Initialise the underlying socket.
int rc = tcp_socket.open (fd_, options.sndbuf, options.rcvbuf);
2009-08-12 09:40:16 +02:00
zmq_assert (rc == 0);
}
zmq::zmq_engine_t::~zmq_engine_t ()
{
zmq_assert (!plugged);
2009-08-12 09:40:16 +02:00
}
2010-08-11 14:09:56 +02:00
void zmq::zmq_engine_t::plug (io_thread_t *io_thread_, i_inout *inout_)
2009-08-12 09:40:16 +02:00
{
zmq_assert (!plugged);
plugged = true;
ephemeral_inout = NULL;
// Connect to session/init object.
zmq_assert (!inout);
2010-08-11 14:09:56 +02:00
zmq_assert (inout_);
2009-08-12 09:40:16 +02:00
encoder.set_inout (inout_);
decoder.set_inout (inout_);
2010-08-11 14:09:56 +02:00
inout = inout_;
// Connect to I/O threads poller object.
io_object_t::plug (io_thread_);
2009-08-12 09:40:16 +02:00
handle = add_fd (tcp_socket.get_fd ());
set_pollin (handle);
set_pollout (handle);
// Flush all the data that may have been already received downstream.
in_event ();
2009-08-12 09:40:16 +02:00
}
void zmq::zmq_engine_t::unplug ()
{
zmq_assert (plugged);
plugged = false;
2010-08-11 14:09:56 +02:00
// Cancel all fd subscriptions.
2009-08-12 09:40:16 +02:00
rm_fd (handle);
2010-08-11 14:09:56 +02:00
// Disconnect from I/O threads poller object.
io_object_t::unplug ();
// Disconnect from init/session object.
encoder.set_inout (NULL);
decoder.set_inout (NULL);
ephemeral_inout = inout;
2009-08-12 09:40:16 +02:00
inout = NULL;
}
void zmq::zmq_engine_t::terminate ()
{
unplug ();
delete this;
}
2009-08-12 09:40:16 +02:00
void zmq::zmq_engine_t::in_event ()
{
bool disconnection = false;
// If there's no data to process in the buffer...
if (!insize) {
2009-08-12 09:40:16 +02:00
// Retrieve the buffer and read as much data as possible.
decoder.get_buffer (&inpos, &insize);
insize = tcp_socket.read (inpos, insize);
2009-08-12 09:40:16 +02:00
// Check whether the peer has closed the connection.
if (insize == (size_t) -1) {
2009-08-12 09:40:16 +02:00
insize = 0;
disconnection = true;
2009-08-12 09:40:16 +02:00
}
}
// Push the data to the decoder.
size_t processed = decoder.process_buffer (inpos, insize);
if (unlikely (processed == (size_t) -1)) {
disconnection = true;
}
else {
// Stop polling for input if we got stuck.
if (processed < insize) {
2009-08-12 09:40:16 +02:00
// This may happen if queue limits are in effect or when
// init object reads all required information from the socket
// and rejects to read more data.
reset_pollin (handle);
}
// Adjust the buffer.
inpos += processed;
insize -= processed;
}
2009-09-04 09:51:42 +02:00
// Flush all messages the decoder may have produced.
// If IO handler has unplugged engine, flush transient IO handler.
if (unlikely (!plugged)) {
zmq_assert (ephemeral_inout);
ephemeral_inout->flush ();
} else {
inout->flush ();
}
if (disconnection)
error ();
}
2009-08-12 09:40:16 +02:00
void zmq::zmq_engine_t::out_event ()
{
2009-08-12 09:40:16 +02:00
// If write buffer is empty, try to read new data from the encoder.
if (!outsize) {
2009-12-13 09:11:08 +01:00
outpos = NULL;
encoder.get_data (&outpos, &outsize);
// If IO handler has unplugged engine, flush transient IO handler.
if (unlikely (!plugged)) {
zmq_assert (ephemeral_inout);
ephemeral_inout->flush ();
return;
}
2009-08-12 09:40:16 +02:00
// If there is no data to send, stop polling for output.
if (outsize == 0) {
2009-08-12 09:40:16 +02:00
reset_pollout (handle);
return;
}
2009-08-12 09:40:16 +02:00
}
// If there are any data to write in write buffer, write as much as
// possible to the socket.
int nbytes = tcp_socket.write (outpos, outsize);
2009-08-12 09:40:16 +02:00
// Handle problems with the connection.
if (nbytes == -1) {
error ();
return;
2009-08-12 09:40:16 +02:00
}
outpos += nbytes;
outsize -= nbytes;
}
2010-08-11 14:09:56 +02:00
void zmq::zmq_engine_t::activate_out ()
2009-08-27 10:54:28 +02:00
{
set_pollout (handle);
// Speculative write: The assumption is that at the moment new message
// was sent by the user the socket is probably available for writing.
// Thus we try to write the data to socket avoiding polling for POLLOUT.
// Consequently, the latency should be better in request/reply scenarios.
out_event ();
2009-08-27 10:54:28 +02:00
}
2010-08-11 14:09:56 +02:00
void zmq::zmq_engine_t::activate_in ()
{
set_pollin (handle);
2010-08-11 14:09:56 +02:00
// Speculative read.
in_event ();
}
2009-08-12 09:40:16 +02:00
void zmq::zmq_engine_t::error ()
{
2009-08-27 16:24:21 +02:00
zmq_assert (inout);
2010-08-11 14:09:56 +02:00
inout->detach ();
2009-08-27 16:24:21 +02:00
unplug ();
delete this;
2009-08-12 09:40:16 +02:00
}