0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-21 15:12:03 +08:00
libzmq/src/zmq_engine.cpp

152 lines
3.8 KiB
C++
Raw Normal View History

/*
Copyright (c) 2007-2009 FastMQ Inc.
This file is part of 0MQ.
0MQ is free software; you can redistribute it and/or modify it under
the terms of the Lesser GNU 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
Lesser GNU General Public License for more details.
You should have received a copy of the Lesser GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#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"
zmq::zmq_engine_t::zmq_engine_t (io_thread_t *parent_, fd_t fd_,
const options_t &options_) :
2009-08-12 09:40:16 +02:00
io_object_t (parent_),
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),
options (options_)
{
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 ()
{
2009-08-12 09:40:16 +02:00
}
void zmq::zmq_engine_t::plug (i_inout *inout_)
{
zmq_assert (!inout);
2009-08-12 09:40:16 +02:00
encoder.set_inout (inout_);
decoder.set_inout (inout_);
handle = add_fd (tcp_socket.get_fd ());
set_pollin (handle);
set_pollout (handle);
inout = inout_;
// 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 ()
{
rm_fd (handle);
encoder.set_inout (NULL);
decoder.set_inout (NULL);
2009-08-12 09:40:16 +02:00
inout = NULL;
}
void zmq::zmq_engine_t::in_event ()
{
// 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;
error ();
return;
}
}
// Push the data to the decoder.
size_t processed = decoder.process_buffer (inpos, insize);
// Adjust the buffer.
inpos += processed;
insize -= processed;
2009-08-12 09:40:16 +02:00
// Stop polling for input if we got stuck.
if (processed < insize)
2009-08-12 09:40:16 +02:00
reset_pollin (handle);
2009-09-04 09:51:42 +02:00
// Flush all messages the decoder may have produced.
inout->flush ();
}
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);
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;
}
2009-08-27 10:54:28 +02:00
void zmq::zmq_engine_t::revive ()
{
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
}
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);
inout->detach ();
unplug ();
delete this;
2009-08-12 09:40:16 +02:00
}