2009-08-12 09:40:16 +02:00
|
|
|
/*
|
2015-01-22 10:32:06 +01:00
|
|
|
Copyright (c) 2007-2015 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
|
2010-10-30 15:08:28 +02:00
|
|
|
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
|
2010-10-30 15:08:28 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2009-08-12 09:40:16 +02:00
|
|
|
|
2010-10-30 15:08:28 +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/>.
|
|
|
|
*/
|
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
#include "v2_protocol.hpp"
|
|
|
|
#include "v2_encoder.hpp"
|
2011-09-16 09:29:43 +02:00
|
|
|
#include "likely.hpp"
|
2009-08-12 09:40:16 +02:00
|
|
|
#include "wire.hpp"
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
zmq::v2_encoder_t::v2_encoder_t (size_t bufsize_) :
|
|
|
|
encoder_base_t <v2_encoder_t> (bufsize_)
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
|
|
|
// Write 0 bytes to the batch and go to message_ready state.
|
2013-03-12 15:26:07 +01:00
|
|
|
next_step (NULL, 0, &v2_encoder_t::message_ready, true);
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
zmq::v2_encoder_t::~v2_encoder_t ()
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
void zmq::v2_encoder_t::message_ready ()
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
2013-03-12 15:26:07 +01:00
|
|
|
// Encode flags.
|
|
|
|
unsigned char &protocol_flags = tmpbuf [0];
|
|
|
|
protocol_flags = 0;
|
2013-03-18 02:00:00 +01:00
|
|
|
if (in_progress->flags () & msg_t::more)
|
2013-03-12 15:26:07 +01:00
|
|
|
protocol_flags |= v2_protocol_t::more_flag;
|
2013-03-18 02:00:00 +01:00
|
|
|
if (in_progress->size () > 255)
|
2013-03-12 15:26:07 +01:00
|
|
|
protocol_flags |= v2_protocol_t::large_flag;
|
2013-09-04 17:59:45 +02:00
|
|
|
if (in_progress->flags () & msg_t::command)
|
|
|
|
protocol_flags |= v2_protocol_t::command_flag;
|
2010-03-09 15:10:44 +01:00
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
// Encode the message length. For messages less then 256 bytes,
|
|
|
|
// the length is encoded as 8-bit unsigned integer. For larger
|
|
|
|
// messages, 64-bit unsigned integer in network byte order is used.
|
2013-03-18 02:00:00 +01:00
|
|
|
const size_t size = in_progress->size ();
|
2013-03-12 15:26:07 +01:00
|
|
|
if (unlikely (size > 255)) {
|
|
|
|
put_uint64 (tmpbuf + 1, size);
|
|
|
|
next_step (tmpbuf, 9, &v2_encoder_t::size_ready, false);
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
else {
|
2013-03-12 15:26:07 +01:00
|
|
|
tmpbuf [1] = static_cast <uint8_t> (size);
|
|
|
|
next_step (tmpbuf, 2, &v2_encoder_t::size_ready, false);
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
}
|
2013-03-12 15:26:07 +01:00
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
void zmq::v2_encoder_t::size_ready ()
|
2013-03-12 15:26:07 +01:00
|
|
|
{
|
|
|
|
// Write message body into the buffer.
|
2013-03-18 02:00:00 +01:00
|
|
|
next_step (in_progress->data (), in_progress->size (),
|
|
|
|
&v2_encoder_t::message_ready, true);
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|