2009-08-12 09:40:16 +02:00
|
|
|
/*
|
2011-03-02 16:30:40 +01:00
|
|
|
Copyright (c) 2007-2011 iMatix Corporation
|
|
|
|
Copyright (c) 2007-2011 Other 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/>.
|
|
|
|
*/
|
|
|
|
|
2010-08-31 07:01:40 +02:00
|
|
|
#include "encoder.hpp"
|
2011-09-15 10:00:23 +02:00
|
|
|
#include "session_base.hpp"
|
2009-08-12 09:40:16 +02:00
|
|
|
#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_),
|
2011-07-24 18:25:30 +02:00
|
|
|
session (NULL)
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
2011-04-21 22:27:48 +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.
|
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
|
|
|
{
|
2011-04-21 22:27:48 +02:00
|
|
|
int rc = in_progress.close ();
|
|
|
|
errno_assert (rc == 0);
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
|
2011-09-15 10:00:23 +02:00
|
|
|
void zmq::encoder_t::set_session (session_base_t *session_)
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
2011-07-24 18:25:30 +02:00
|
|
|
session = session_;
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
|
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.
|
2011-04-21 22:27:48 +02:00
|
|
|
next_step (in_progress.data (), in_progress.size (),
|
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.
|
2011-04-21 22:27:48 +02:00
|
|
|
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.
|
2011-07-24 18:25:30 +02:00
|
|
|
if (!session || !session->read (&in_progress)) {
|
2011-04-21 22:27:48 +02:00
|
|
|
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
|
|
|
|
2010-03-20 10:58:59 +01:00
|
|
|
// Get the message size.
|
2011-04-21 22:27:48 +02:00
|
|
|
size_t size = in_progress.size ();
|
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;
|
2011-04-21 22:27:48 +02:00
|
|
|
tmpbuf [1] = (in_progress.flags () & ~msg_t::shared);
|
2010-08-31 07:01:40 +02:00
|
|
|
next_step (tmpbuf, 2, &encoder_t::size_ready,
|
2011-06-20 11:33:54 +02:00
|
|
|
!(in_progress.flags () & (msg_t::more | msg_t::label)));
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
tmpbuf [0] = 0xff;
|
|
|
|
put_uint64 (tmpbuf + 1, size);
|
2011-04-21 22:27:48 +02:00
|
|
|
tmpbuf [9] = (in_progress.flags () & ~msg_t::shared);
|
2010-08-31 07:01:40 +02:00
|
|
|
next_step (tmpbuf, 10, &encoder_t::size_ready,
|
2011-06-20 11:33:54 +02:00
|
|
|
!(in_progress.flags () & (msg_t::more | msg_t::label)));
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|