0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-22 07:29:31 +08:00
libzmq/src/encoder.cpp

100 lines
3.0 KiB
C++
Raw Normal View History

2009-08-12 09:40:16 +02:00
/*
Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file
2009-08-12 09:40:16 +02:00
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
2009-08-12 09:40:16 +02:00
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.
2009-08-12 09:40:16 +02:00
You should have received a copy of the GNU Lesser General Public License
2009-08-12 09:40:16 +02:00
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "encoder.hpp"
#include "i_msg_source.hpp"
#include "likely.hpp"
2009-08-12 09:40:16 +02:00
#include "wire.hpp"
zmq::encoder_t::encoder_t (size_t bufsize_) :
encoder_base_t <encoder_t> (bufsize_),
msg_source (NULL)
2009-08-12 09:40:16 +02:00
{
int rc = in_progress.init ();
errno_assert (rc == 0);
2009-08-12 09:40:16 +02:00
// Write 0 bytes to the batch and go to message_ready state.
next_step (NULL, 0, &encoder_t::message_ready, true);
2009-08-12 09:40:16 +02:00
}
zmq::encoder_t::~encoder_t ()
2009-08-12 09:40:16 +02:00
{
int rc = in_progress.close ();
errno_assert (rc == 0);
2009-08-12 09:40:16 +02:00
}
void zmq::encoder_t::set_msg_source (i_msg_source *msg_source_)
2009-08-12 09:40:16 +02:00
{
msg_source = msg_source_;
2009-08-12 09:40:16 +02:00
}
bool zmq::encoder_t::size_ready ()
2009-08-12 09:40:16 +02:00
{
// Write message body into the buffer.
next_step (in_progress.data (), in_progress.size (),
&encoder_t::message_ready, !(in_progress.flags () & msg_t::more));
2009-08-12 09:40:16 +02:00
return true;
}
bool zmq::encoder_t::message_ready ()
2009-08-12 09:40:16 +02:00
{
2009-11-26 12:01:26 +01:00
// Destroy content of the old message.
int rc = in_progress.close ();
errno_assert (rc == 0);
2009-11-26 12:01:26 +01:00
2010-05-05 14:24:54 +02:00
// Read new message. If there is none, return false.
2009-08-12 09:40:16 +02:00
// Note that new state is set only if write is successful. That way
// unsuccessful write will cause retry on the next state machine
// invocation.
if (unlikely (!msg_source)) {
rc = in_progress.init ();
errno_assert (rc == 0);
return false;
}
rc = msg_source->pull_msg (&in_progress);
if (unlikely (rc != 0)) {
errno_assert (errno == EAGAIN);
rc = in_progress.init ();
errno_assert (rc == 0);
2009-08-12 09:40:16 +02:00
return false;
2009-11-26 12:01:26 +01:00
}
2009-08-27 10:54:28 +02:00
// Get the message size.
size_t size = in_progress.size ();
// Account for the 'flags' byte.
size++;
2009-08-12 09:40:16 +02:00
// For messages less than 255 bytes long, write one byte of message size.
// For longer messages write 0xff escape character followed by 8-byte
2010-03-27 21:25:40 +01:00
// message size. In both cases 'flags' field follows.
2009-08-12 09:40:16 +02:00
if (size < 255) {
tmpbuf [0] = (unsigned char) size;
2012-03-20 10:53:51 -05:00
tmpbuf [1] = (in_progress.flags () & msg_t::more);
next_step (tmpbuf, 2, &encoder_t::size_ready, false);
2009-08-12 09:40:16 +02:00
}
else {
tmpbuf [0] = 0xff;
put_uint64 (tmpbuf + 1, size);
2012-03-20 10:53:51 -05:00
tmpbuf [9] = (in_progress.flags () & msg_t::more);
next_step (tmpbuf, 10, &encoder_t::size_ready, false);
2009-08-12 09:40:16 +02:00
}
return true;
}