2009-08-12 09:40:16 +02:00
|
|
|
/*
|
2016-01-28 15:07:31 +01:00
|
|
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
2009-08-12 09:40:16 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
2009-08-12 09:40:16 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
libzmq is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
|
|
|
by the Free Software Foundation; either version 3 of the License, or
|
2009-08-12 09:40:16 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
As a special exception, the Contributors give you permission to link
|
|
|
|
this library with independent modules to produce an executable,
|
|
|
|
regardless of the license terms of these independent modules, and to
|
|
|
|
copy and distribute the resulting executable under terms of your choice,
|
|
|
|
provided that you also meet, for each linked independent module, the
|
|
|
|
terms and conditions of the license of that module. An independent
|
|
|
|
module is a module which is not derived from or based on this library.
|
|
|
|
If you modify this library, you must extend this exception to your
|
|
|
|
version of the library.
|
|
|
|
|
|
|
|
libzmq 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
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2016-02-18 17:56:52 +01:00
|
|
|
#include "precompiled.hpp"
|
2013-03-12 15:26:07 +01:00
|
|
|
#include "v2_protocol.hpp"
|
|
|
|
#include "v2_encoder.hpp"
|
2018-05-18 17:47:47 +02:00
|
|
|
#include "msg.hpp"
|
2011-09-16 09:29:43 +02:00
|
|
|
#include "likely.hpp"
|
2009-08-12 09:40:16 +02:00
|
|
|
#include "wire.hpp"
|
|
|
|
|
2018-05-28 18:46:36 +02:00
|
|
|
#include <limits.h>
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
zmq::v2_encoder_t::v2_encoder_t (size_t bufsize_) :
|
2018-02-01 11:46:09 +01:00
|
|
|
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.
|
2018-05-27 11:10:39 +02:00
|
|
|
unsigned char &protocol_flags = _tmp_buf[0];
|
2013-03-12 15:26:07 +01:00
|
|
|
protocol_flags = 0;
|
2018-05-30 09:57:46 +02:00
|
|
|
if (in_progress ()->flags () & msg_t::more)
|
2013-03-12 15:26:07 +01:00
|
|
|
protocol_flags |= v2_protocol_t::more_flag;
|
2018-05-30 09:57:46 +02:00
|
|
|
if (in_progress ()->size () > UCHAR_MAX)
|
2013-03-12 15:26:07 +01:00
|
|
|
protocol_flags |= v2_protocol_t::large_flag;
|
2018-05-30 09:57:46 +02:00
|
|
|
if (in_progress ()->flags () & msg_t::command)
|
2013-09-04 17:59:45 +02:00
|
|
|
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.
|
2018-05-30 09:57:46 +02:00
|
|
|
const size_t size = in_progress ()->size ();
|
2018-05-28 18:46:36 +02:00
|
|
|
if (unlikely (size > UCHAR_MAX)) {
|
2018-05-27 11:10:39 +02:00
|
|
|
put_uint64 (_tmp_buf + 1, size);
|
|
|
|
next_step (_tmp_buf, 9, &v2_encoder_t::size_ready, false);
|
2018-02-01 11:46:09 +01:00
|
|
|
} else {
|
2018-05-27 11:10:39 +02:00
|
|
|
_tmp_buf[1] = static_cast<uint8_t> (size);
|
|
|
|
next_step (_tmp_buf, 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.
|
2018-05-30 09:57:46 +02:00
|
|
|
next_step (in_progress ()->data (), in_progress ()->size (),
|
2018-02-01 11:46:09 +01:00
|
|
|
&v2_encoder_t::message_ready, true);
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|