2009-08-12 09:40:16 +02:00
|
|
|
/*
|
2010-01-05 08:29:35 +01:00
|
|
|
Copyright (c) 2007-2010 iMatix Corporation
|
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 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/>.
|
|
|
|
*/
|
|
|
|
|
2010-08-31 07:01:40 +02:00
|
|
|
#include "encoder.hpp"
|
2009-08-12 09:40:16 +02:00
|
|
|
#include "i_inout.hpp"
|
|
|
|
#include "wire.hpp"
|
|
|
|
|
2010-08-31 07:01:40 +02:00
|
|
|
zmq::encoder_t::encoder_t (size_t bufsize_) :
|
|
|
|
encoder_base_t <encoder_t> (bufsize_),
|
2010-03-20 10:58:59 +01:00
|
|
|
source (NULL)
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
|
|
|
zmq_msg_init (&in_progress);
|
|
|
|
|
|
|
|
// Write 0 bytes to the batch and go to message_ready state.
|
2010-08-31 07:01:40 +02:00
|
|
|
next_step (NULL, 0, &encoder_t::message_ready, true);
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
|
2010-08-31 07:01:40 +02:00
|
|
|
zmq::encoder_t::~encoder_t ()
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
|
|
|
zmq_msg_close (&in_progress);
|
|
|
|
}
|
|
|
|
|
2010-08-31 07:01:40 +02:00
|
|
|
void zmq::encoder_t::set_inout (i_inout *source_)
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
|
|
|
source = source_;
|
|
|
|
}
|
|
|
|
|
2010-08-31 07:01:40 +02:00
|
|
|
bool zmq::encoder_t::size_ready ()
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
|
|
|
// Write message body into the buffer.
|
2010-03-20 10:58:59 +01:00
|
|
|
next_step (zmq_msg_data (&in_progress), zmq_msg_size (&in_progress),
|
2010-08-31 07:01:40 +02:00
|
|
|
&encoder_t::message_ready, false);
|
2009-08-12 09:40:16 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-08-31 07:01:40 +02:00
|
|
|
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.
|
2010-08-06 17:49:37 +02:00
|
|
|
zmq_msg_close (&in_progress);
|
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.
|
2009-11-26 12:01:26 +01:00
|
|
|
if (!source || !source->read (&in_progress)) {
|
|
|
|
zmq_msg_init (&in_progress);
|
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
|
|
|
|
2010-03-20 10:58:59 +01:00
|
|
|
// Get the message size.
|
2009-08-12 09:40:16 +02:00
|
|
|
size_t size = zmq_msg_size (&in_progress);
|
2010-02-16 18:30:38 +01:00
|
|
|
|
2010-03-09 15:10:44 +01:00
|
|
|
// 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;
|
2010-03-09 17:24:42 +01:00
|
|
|
tmpbuf [1] = (in_progress.flags & ~ZMQ_MSG_SHARED);
|
2010-08-31 07:01:40 +02:00
|
|
|
next_step (tmpbuf, 2, &encoder_t::size_ready,
|
2010-03-27 21:25:40 +01:00
|
|
|
!(in_progress.flags & ZMQ_MSG_MORE));
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
tmpbuf [0] = 0xff;
|
|
|
|
put_uint64 (tmpbuf + 1, size);
|
2010-03-09 17:24:42 +01:00
|
|
|
tmpbuf [9] = (in_progress.flags & ~ZMQ_MSG_SHARED);
|
2010-08-31 07:01:40 +02:00
|
|
|
next_step (tmpbuf, 10, &encoder_t::size_ready,
|
2010-03-27 21:25:40 +01:00
|
|
|
!(in_progress.flags & ZMQ_MSG_MORE));
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|