libzmq/src/encoder.cpp

90 lines
2.7 KiB
C++
Raw Normal View History

2009-08-12 09:40:16 +02: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/>.
*/
#include "encoder.hpp"
2009-08-12 09:40:16 +02:00
#include "i_inout.hpp"
#include "wire.hpp"
zmq::encoder_t::encoder_t (size_t bufsize_) :
encoder_base_t <encoder_t> (bufsize_),
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.
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
{
zmq_msg_close (&in_progress);
}
void zmq::encoder_t::set_inout (i_inout *source_)
2009-08-12 09:40:16 +02:00
{
source = source_;
}
bool zmq::encoder_t::size_ready ()
2009-08-12 09:40:16 +02:00
{
// Write message body into the buffer.
next_step (zmq_msg_data (&in_progress), zmq_msg_size (&in_progress),
&encoder_t::message_ready, false);
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.
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
// Get the message size.
2009-08-12 09:40:16 +02:00
size_t size = zmq_msg_size (&in_progress);
// 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;
tmpbuf [1] = (in_progress.flags & ~ZMQ_MSG_SHARED);
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);
tmpbuf [9] = (in_progress.flags & ~ZMQ_MSG_SHARED);
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;
}